314 current 2025-10-11 18:09:02 25.05.20251006.20c4598 6.12.50 *

This commit is contained in:
2025-10-11 18:57:14 -05:00
parent 728176d27b
commit 0c8d7af971
2 changed files with 9 additions and 3 deletions

View File

@@ -98,9 +98,15 @@ in
services.nginx.virtualHosts."${cfg.url}" = {
forceSSL = true;
sslCertificate = sec."ssl_blakedheld_crt".path;
sslCertificateKey = sec."ssl_blakedheld_key".path;
extraConfig = ''
proxy_buffering off;
'';
locations."/" = {
proxyPass = "http://127.0.0.1:${toString cfg.port}";
extraConfig =
"proxy_set_header Upgrade $http_upgrade;" +
"proxy_set_header Connection upgrade;"
;
};
};