Need to access the localhost Ip of my service
Hi, good morning, quick question.
project id: 0c7fec98-322c-4deb-ac9d-d61c6c0278bf
In my development I am using
ws://127.0.0.1:8000/ws/live/?token=${token}
.
However in production I cannot use that Ip, so
should it be ws://myapp.up.railway.app/ws/live/?token=${token}
or ws://0.0.0.0:xxxx/ws/live/?token=${token}
thanks.Solution:Jump to solution
it should be
wss://myapp.up.railway.app/ws/live/?token=${token}
note we're using wss
and not ws
...3 Replies