feat(services/server): adding proxy setup for teamspeak redirection

This commit is contained in:
Raphael 2026-03-01 22:13:32 +01:00
parent 5a7b4e41fc
commit 8456ea147c
No known key found for this signature in database

View file

@ -21,6 +21,13 @@ in
locations."/" = {
proxyPass = "http://127.0.0.1:9987";
proxyWebsockets = true;
extraConfig = ''
proxy_ssl_verify off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto https;
'';
};
};
};