I am getting this error when I am at my production server:
WebSocket connection to 'wss://localhost:8080/app/mjrhvwaous7au0soqplg?protocol=7&client=js&version=8.4.0-rc2&flash=false' failed
In my localhost everything is working properly, but it looks like my server is not accepting the connection. I am using ploi for server management. Which can spawn the reverb server.
This is my config:
REVERB_APP_ID=479663
REVERB_APP_KEY=mjrhvwaous7au0soqplg
REVERB_APP_SECRET=mfvk84yhtsl3h1ywxda2
REVERB_HOST="localhost"
REVERB_PORT=8080
REVERB_SCHEME=https
VITE_REVERB_APP_KEY="${REVERB_APP_KEY}"
VITE_REVERB_HOST="${REVERB_HOST}"
VITE_REVERB_PORT="${REVERB_PORT}"
VITE_REVERB_SCHEME="${REVERB_SCHEME}"
And when I spawn the server it is showing this message:
reverb:start --host=127.0.0.1 --port=8080 --no-interaction --debug
This is giving me this output so it looks like it is working:
Pinging Inactive Connections ...............................................
Pruning Stale Connections ..................................................
Pinging Inactive Connections ...............................................
Pruning Stale Connections ..................................................
Am I missing something?