This commit is contained in:
zino
2023-12-05 19:18:41 +01:00
parent b6e9231ec8
commit 18424240c4

View File

@@ -25,15 +25,15 @@ server {
set $upstream "code-server:8443";
proxy_http_version 1.1;
proxy_set_header Host $host;
#proxy_http_version 1.1;
#proxy_set_header Host $host;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Accept-Encoding gzip;
proxy_set_header Connection upgrade;
proxy_headers_hash_max_size 512;
proxy_headers_hash_bucket_size 128;
proxy_read_timeout 3600;
#proxy_set_header Host $http_host;
proxy_set_header Host $http_host;
proxy_pass http://$upstream;
}