diff options
author | TheArcaneBrony <myrainbowdash949@gmail.com> | 2023-09-25 19:12:45 +0200 |
---|---|---|
committer | Rory& <root@rory.gay> | 2024-06-05 17:25:16 +0200 |
commit | c47e2f0ab033cbb4ce54cadb6c024c20ad7b5145 (patch) | |
tree | cafe69cc37dbac1a2224ef1a01319cdec8f89910 /host/Spacebar-nginx/nginx-hosts/spacebar.chat/server/old/root.nix | |
parent | Move boot target (diff) | |
download | Spacebar-Open-Infrastructure-c47e2f0ab033cbb4ce54cadb6c024c20ad7b5145.tar.xz |
Switch to nginx mainline
Diffstat (limited to 'host/Spacebar-nginx/nginx-hosts/spacebar.chat/server/old/root.nix')
-rwxr-xr-x | host/Spacebar-nginx/nginx-hosts/spacebar.chat/server/old/root.nix | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/host/Spacebar-nginx/nginx-hosts/spacebar.chat/server/old/root.nix b/host/Spacebar-nginx/nginx-hosts/spacebar.chat/server/old/root.nix new file mode 100755 index 0000000..8b7df6d --- /dev/null +++ b/host/Spacebar-nginx/nginx-hosts/spacebar.chat/server/old/root.nix @@ -0,0 +1,14 @@ +{ + enableACME = true; + forceSSL = true; + locations = { + "/" = { + proxyPass = "http://192.168.1.200:3001"; + proxyWebsockets = true; + extraConfig = + "proxy_ssl_server_name on;" + + "proxy_pass_header Authorization;" + ; + }; + }; +} |