Question
Websocket on DigitalOcean apps does not work.
Hello, I have a component in the DigitalOcean apps in nodejs with socket.io and another component running a static website in reactjs inside the same DigitalOcean app running on localhost the site can connect to the websocket without problems but when I deploy to DigitalOcean does not connect, rest requests work ok.
client:
const socket = socketIOClient(process.env.REACT_APP_WS, {
query: `token=${token}`,
});
server:
const server = http.createServer(app);
const io = socketIo(server);
I appreciate any help.
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
×