2025-02-06, 04:26 PM
(This post was last modified: 2025-02-06, 04:32 PM by TheDreadPirate. Edited 2 times in total.)
Try adding a separate /socket location with identical parameters as proxy.conf plus these two proxy_set_headers.
I know you have those two in the server block, but I'm trying to find clarification if those headers need to be in the location or not.
Also, "Connection" needs to be "upgrade". Yours is currently set to "$http_connection".
Code:
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
I know you have those two in the server block, but I'm trying to find clarification if those headers need to be in the location or not.
Also, "Connection" needs to be "upgrade". Yours is currently set to "$http_connection".