Fantomen
We fixed this over Discord, turns out there's a typo in the Nginx config I gave you guys.
There's a duplicate set header line:
location @ws {
proxy_pass http://127.0.0.1:2083;
proxy_set_header Host $host; <--- THIS LINE
proxy_read_timeout 60;
proxy_connect_timeout 60;
proxy_redirect off;
# Allow the use of websockets
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;
}
Please remove this line, it prevents the new beta websocket server from running. It will not break anything since it's a duplicate.
2.4.2
- Cleanup some Poxa backend code for security purposes