diff options
-rwxr-xr-x | host/Spacebar-nginx/configuration.nix | 5 | ||||
-rwxr-xr-x | host/Spacebar-nginx/hosts/fosscord.com/matrix.nix | 2 | ||||
-rwxr-xr-x | host/Spacebar-nginx/hosts/spacebar.chat/server/old/api.nix (renamed from host/Spacebar-nginx/hosts/spacebar.chat/server/old.nix) | 0 | ||||
-rwxr-xr-x | host/Spacebar-nginx/hosts/spacebar.chat/server/old/cdn.nix | 14 | ||||
-rwxr-xr-x | host/Spacebar-nginx/hosts/spacebar.chat/server/old/gateway.nix | 14 | ||||
-rwxr-xr-x | host/Spacebar-nginx/hosts/spacebar.chat/server/old/root.nix | 14 |
6 files changed, 47 insertions, 2 deletions
diff --git a/host/Spacebar-nginx/configuration.nix b/host/Spacebar-nginx/configuration.nix index f02fc3e..ea5087e 100755 --- a/host/Spacebar-nginx/configuration.nix +++ b/host/Spacebar-nginx/configuration.nix @@ -31,7 +31,10 @@ # production "mail.spacebar.chat" = import ./hosts/spacebar.chat/mail.nix; - "old.server.spacebar.chat" = import ./hosts/spacebar.chat/server/old.nix; + "old.server.spacebar.chat" = import ./hosts/spacebar.chat/server/old/root.nix; + "api.old.server.spacebar.chat" = import ./hosts/spacebar.chat/server/old/api.nix; + "cdn.old.server.spacebar.chat" = import ./hosts/spacebar.chat/server/old/cdn.nix; + "gateway.old.server.spacebar.chat" = import ./hosts/spacebar.chat/server/old/gateway.nix; # local only "secrets.spacebar.local" = import ./hosts/spacebar.local/secrets.nix { inherit lib config; }; diff --git a/host/Spacebar-nginx/hosts/fosscord.com/matrix.nix b/host/Spacebar-nginx/hosts/fosscord.com/matrix.nix index d2b7606..ac21846 100755 --- a/host/Spacebar-nginx/hosts/fosscord.com/matrix.nix +++ b/host/Spacebar-nginx/hosts/fosscord.com/matrix.nix @@ -3,7 +3,7 @@ addSSL = true; locations = { "/" = { - proxyPass = "http://192.168.1.200:8008"; + proxyPass = "http://192.168.1.200:8009"; proxyWebsockets = true; extraConfig = "proxy_ssl_server_name on;" + diff --git a/host/Spacebar-nginx/hosts/spacebar.chat/server/old.nix b/host/Spacebar-nginx/hosts/spacebar.chat/server/old/api.nix index 8b7df6d..8b7df6d 100755 --- a/host/Spacebar-nginx/hosts/spacebar.chat/server/old.nix +++ b/host/Spacebar-nginx/hosts/spacebar.chat/server/old/api.nix diff --git a/host/Spacebar-nginx/hosts/spacebar.chat/server/old/cdn.nix b/host/Spacebar-nginx/hosts/spacebar.chat/server/old/cdn.nix new file mode 100755 index 0000000..89958fe --- /dev/null +++ b/host/Spacebar-nginx/hosts/spacebar.chat/server/old/cdn.nix @@ -0,0 +1,14 @@ +{ + enableACME = true; + forceSSL = true; + locations = { + "/" = { + proxyPass = "http://192.168.1.200:3003"; + proxyWebsockets = true; + extraConfig = + "proxy_ssl_server_name on;" + + "proxy_pass_header Authorization;" + ; + }; + }; +} diff --git a/host/Spacebar-nginx/hosts/spacebar.chat/server/old/gateway.nix b/host/Spacebar-nginx/hosts/spacebar.chat/server/old/gateway.nix new file mode 100755 index 0000000..ff95a5e --- /dev/null +++ b/host/Spacebar-nginx/hosts/spacebar.chat/server/old/gateway.nix @@ -0,0 +1,14 @@ +{ + enableACME = true; + forceSSL = true; + locations = { + "/" = { + proxyPass = "http://192.168.1.200:3002"; + proxyWebsockets = true; + extraConfig = + "proxy_ssl_server_name on;" + + "proxy_pass_header Authorization;" + ; + }; + }; +} diff --git a/host/Spacebar-nginx/hosts/spacebar.chat/server/old/root.nix b/host/Spacebar-nginx/hosts/spacebar.chat/server/old/root.nix new file mode 100755 index 0000000..8b7df6d --- /dev/null +++ b/host/Spacebar-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;" + ; + }; + }; +} |