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;" + ; + }; + }; }