updated module to add epyc builders

This commit is contained in:
Luj 2023-07-26 19:34:55 +02:00
parent 9396e81f55
commit d4a2e9cb70
Signed by: luj
GPG key ID: 6FC74C847011FD83
3 changed files with 9 additions and 8 deletions

View file

@ -88,15 +88,16 @@ in
extraConfig = ''
ssl_session_timeout 1440m;
ssl_session_cache shared:SSL:10m;
proxy_set_header Upgrade $http_upgrade;
'';
locations."/".proxyPass = "http://127.0.0.1:1810/";
locations."/".proxyPass = "http://[::]:1810/";
locations."/sse" = {
proxyPass = "http://127.0.0.1:1810/sse/";
proxyPass = "http://[::]:1810/sse/";
# proxy buffering will prevent sse to work
extraConfig = "proxy_buffering off;";
};
locations."/ws" = {
proxyPass = "http://127.0.0.1:1810/ws";
proxyPass = "http://[::]:1810/ws";
proxyWebsockets = true;
# raise the proxy timeout for the websocket
extraConfig = "proxy_read_timeout 6000s;";