Getting stuck while Testing the flow

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";
1 Like