summary refs log tree commit diff
diff options
context:
space:
mode:
authorTheArcaneBrony <myrainbowdash949@gmail.com>2023-04-04 03:24:40 +0200
committerRory& <root@rory.gay>2024-06-05 17:25:16 +0200
commite14c6dcc76ad18ef81edddfb6d192f9ba7ec5ae6 (patch)
treed6458d637f2bff869be2f15ba07246c06fd6ea51
parentAdd fosscord matrix and old staging (diff)
downloadSpacebar-Open-Infrastructure-e14c6dcc76ad18ef81edddfb6d192f9ba7ec5ae6.tar.xz
Split old instance
-rwxr-xr-xhost/Spacebar-nginx/configuration.nix5
-rwxr-xr-xhost/Spacebar-nginx/hosts/fosscord.com/matrix.nix2
-rwxr-xr-xhost/Spacebar-nginx/hosts/spacebar.chat/server/old/api.nix (renamed from host/Spacebar-nginx/hosts/spacebar.chat/server/old.nix)0
-rwxr-xr-xhost/Spacebar-nginx/hosts/spacebar.chat/server/old/cdn.nix14
-rwxr-xr-xhost/Spacebar-nginx/hosts/spacebar.chat/server/old/gateway.nix14
-rwxr-xr-xhost/Spacebar-nginx/hosts/spacebar.chat/server/old/root.nix14
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;" + ; + }; + }; +}