I've tried to release my application with EXRM. The whole app is working except for WebSockets which fail to start
This is the error in the browser (Chrome)
WebSocket connection to 'ws://localhost:4001/socket/websocket?token=undefined' failed: Error during WebSocket handshake: Unexpected response code: 403
It seems that the variable token
might be a problem.
When starting with Mix phoenix.server
it all works great. But released with commands:
$ mix deps.get
$ mix compile
$ MIX_ENV=prod mix digest
$ MIX_ENV=prod mix release
$ ./rel/project/bin/project
Might it be something regarding some missed steps of me or is it Phoenix related issue.