From e14c6dcc76ad18ef81edddfb6d192f9ba7ec5ae6 Mon Sep 17 00:00:00 2001 From: TheArcaneBrony Date: Tue, 4 Apr 2023 03:24:40 +0200 Subject: Split old instance --- host/Spacebar-nginx/configuration.nix | 5 ++++- host/Spacebar-nginx/hosts/fosscord.com/matrix.nix | 2 +- host/Spacebar-nginx/hosts/spacebar.chat/server/old.nix | 14 -------------- host/Spacebar-nginx/hosts/spacebar.chat/server/old/api.nix | 14 ++++++++++++++ host/Spacebar-nginx/hosts/spacebar.chat/server/old/cdn.nix | 14 ++++++++++++++ .../hosts/spacebar.chat/server/old/gateway.nix | 14 ++++++++++++++ .../Spacebar-nginx/hosts/spacebar.chat/server/old/root.nix | 14 ++++++++++++++ 7 files changed, 61 insertions(+), 16 deletions(-) delete mode 100755 host/Spacebar-nginx/hosts/spacebar.chat/server/old.nix create mode 100755 host/Spacebar-nginx/hosts/spacebar.chat/server/old/api.nix create mode 100755 host/Spacebar-nginx/hosts/spacebar.chat/server/old/cdn.nix create mode 100755 host/Spacebar-nginx/hosts/spacebar.chat/server/old/gateway.nix create mode 100755 host/Spacebar-nginx/hosts/spacebar.chat/server/old/root.nix 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.nix deleted file mode 100755 index 8b7df6d..0000000 --- a/host/Spacebar-nginx/hosts/spacebar.chat/server/old.nix +++ /dev/null @@ -1,14 +0,0 @@ -{ - enableACME = true; - forceSSL = true; - locations = { - "/" = { - proxyPass = "http://192.168.1.200:3001"; - proxyWebsockets = true; - extraConfig = - "proxy_ssl_server_name on;" + - "proxy_pass_header Authorization;" - ; - }; - }; -} 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;" + ; + }; + }; +} 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;" + ; + }; + }; +} -- cgit 1.4.1