diff options
author | polwex <polwex@sortug.com> | 2024-09-12 03:13:47 +0700 |
---|---|---|
committer | polwex <polwex@sortug.com> | 2024-09-12 03:13:47 +0700 |
commit | e179300899ea74865cd35fb38f7d589dcd269ecb (patch) | |
tree | d4ed77eb5c992b764d3c1bff62dbcaa5d28b4bd6 /hosts/cloud/bkk/nginx.nix | |
parent | 71875f0b723fb51ec59a18ee612d385702fb8765 (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 c73eaeb..03c13ce 100644 --- a/hosts/cloud/bkk/nginx.nix +++ b/hosts/cloud/bkk/nginx.nix @@ -25,6 +25,14 @@ proxy_cache off; ''; }; + virtualHosts."head.urbit.men" = { + enableACME = true; + forceSSL = true; + locations."/" = { + proxyPass = "http://127.0.0.1:8001"; + proxyWebsockets = true; # needed if you need to use WebSocket + }; + }; virtualHosts."m.urbit.men" = { enableACME = true; forceSSL = true; |