diff options
author | polwex <polwex@sortug.com> | 2024-10-06 20:07:07 +0700 |
---|---|---|
committer | polwex <polwex@sortug.com> | 2024-10-06 20:07:07 +0700 |
commit | 8d6ba07563abc02b498d31307eecd7463ce65e39 (patch) | |
tree | acec26a38ad9210c60040d9cdfefa46207f78e5e /hosts/cloud/bkk/nginx.nix | |
parent | 3a8f180df3cb9c336ff4304be4b3ca365215ba60 (diff) | |
parent | 27ed56803e8075c97a5beddc648f3b1239fd015d (diff) |
m
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; |