diff --git a/conf/nginx.conf b/conf/nginx.conf index 67fff8a..42ef2a2 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -2,12 +2,10 @@ location PATHTOCHANGE { if ($scheme = http) { rewrite ^ https://$server_name$request_uri? permanent; } - location / { proxy_pass http://localhost:9001; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection 'upgrade'; proxy_set_header Host $host; proxy_cache_bypass $http_upgrade; - } }