The issue was that I didn’t allow WebSocket in Nginx. I added the following, and now it’s working:
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
The issue was that I didn’t allow WebSocket in Nginx. I added the following, and now it’s working:
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";