diff options
Diffstat (limited to 'hosts/cloud/bkk/nginx.nix')
-rw-r--r-- | hosts/cloud/bkk/nginx.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/hosts/cloud/bkk/nginx.nix b/hosts/cloud/bkk/nginx.nix index 03c13ce..ea6b785 100644 --- a/hosts/cloud/bkk/nginx.nix +++ b/hosts/cloud/bkk/nginx.nix @@ -33,6 +33,14 @@ proxyWebsockets = true; # needed if you need to use WebSocket }; }; + virtualHosts."kino.urbit.men" = { + enableACME = true; + forceSSL = true; + locations."/" = { + proxyPass = "http://127.0.0.1:8095"; + proxyWebsockets = true; # needed if you need to use WebSocket + }; + }; virtualHosts."m.urbit.men" = { enableACME = true; forceSSL = true; |