Changed iceshrimp pointer, and add twitter and bluesky subdomains

Main
Jo 2024-11-24 13:26:00 +00:00 committed by hermitcollective.net
parent c86ab83579
commit da0595b209
1 changed files with 31 additions and 1 deletions

View File

@ -4,7 +4,37 @@
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
"proxy_ssl_server_name on;" +
# required when the server wants to use HTTP Authentication
"proxy_pass_header Authorization;"
;
};
};
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