diff options
author | TheArcaneBrony <myrainbowdash949@gmail.com> | 2023-04-04 03:24:40 +0200 |
---|---|---|
committer | Rory& <root@rory.gay> | 2024-06-05 17:25:16 +0200 |
commit | e14c6dcc76ad18ef81edddfb6d192f9ba7ec5ae6 (patch) | |
tree | d6458d637f2bff869be2f15ba07246c06fd6ea51 /host/Spacebar-nginx/hosts/spacebar.chat/server/old/api.nix | |
parent | Add fosscord matrix and old staging (diff) | |
download | Spacebar-Open-Infrastructure-e14c6dcc76ad18ef81edddfb6d192f9ba7ec5ae6.tar.xz |
Split old instance
Diffstat (limited to 'host/Spacebar-nginx/hosts/spacebar.chat/server/old/api.nix')
-rwxr-xr-x | host/Spacebar-nginx/hosts/spacebar.chat/server/old/api.nix | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/host/Spacebar-nginx/hosts/spacebar.chat/server/old/api.nix b/host/Spacebar-nginx/hosts/spacebar.chat/server/old/api.nix new file mode 100755 index 0000000..8b7df6d --- /dev/null +++ b/host/Spacebar-nginx/hosts/spacebar.chat/server/old/api.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;" + ; + }; + }; +} |