From da0595b2091010b75de1176a56599f4006e454b1 Mon Sep 17 00:00:00 2001 From: Jo Date: Sun, 24 Nov 2024 13:26:00 +0000 Subject: [PATCH] Changed iceshrimp pointer, and add twitter and bluesky subdomains --- services/iceshrimp.nix | 32 +++++++++++++++++++++++++++++++- 1 file changed, 31 insertions(+), 1 deletion(-) diff --git a/services/iceshrimp.nix b/services/iceshrimp.nix index d77f16b..dbf425f 100644 --- a/services/iceshrimp.nix +++ b/services/iceshrimp.nix @@ -4,7 +4,7 @@ forceSSL = true; enableACME = true; locations."/" = { - proxyPass = "http://192.168.178.135:3000/"; + proxyPass = "http://192.168.178.135"; proxyWebsockets = true; # needed if you need to use WebSocket extraConfig = # required when the target is also TLS server with multiple hosts @@ -14,4 +14,34 @@ ; }; }; + + services.nginx.virtualHosts."twitter.hermitcollective.net" = { + forceSSL = true; + enableACME = true; + locations."/" = { + proxyPass = "http://192.168.178.135"; + proxyWebsockets = true; # needed if you need to use WebSocket + extraConfig = + # required when the target is also TLS server with multiple hosts + "proxy_ssl_server_name on;" + + # required when the server wants to use HTTP Authentication + "proxy_pass_header Authorization;" + ; + }; + }; + + services.nginx.virtualHosts."bluesky.hermitcollective.net" = { + forceSSL = true; + enableACME = true; + locations."/" = { + proxyPass = "http://192.168.178.135"; + proxyWebsockets = true; # needed if you need to use WebSocket + extraConfig = + # required when the target is also TLS server with multiple hosts + "proxy_ssl_server_name on;" + + # required when the server wants to use HTTP Authentication + "proxy_pass_header Authorization;" + ; + }; + }; }