nginx conf ws

This commit is contained in:
Asger Juul Brunshøj 2023-06-13 21:49:12 +02:00
parent 9a064a339e
commit c7d1674055

View File

@ -9,6 +9,10 @@ server {
location / { location / {
proxy_pass http://localhost:4001/; proxy_pass http://localhost:4001/;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_set_header Host $host;
} }
} }