You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to make now.js accessible on computers outside my home network via my external ip address. I've already setup the router for port forwarding to the ports that I have used. 8080 for php, 8081 for node.js
I have this on the back-end JavaScript file(chatserver.js)
server.listen(8081, "0.0.0.0");
I've also modified this line in the nowjs.js file into my external ip but still doesn't work.
window.now = nowInitialize("//localhost:8081", {});
I'm trying out the chat server example from the site. It works fine when I access it via localhost and via my external ip on my laptop. But when somebody accesses it from the outside, they can still access the page but is unable to handshake. Where could the problem be?
The text was updated successfully, but these errors were encountered:
I'm trying to make now.js accessible on computers outside my home network via my external ip address. I've already setup the router for port forwarding to the ports that I have used. 8080 for php, 8081 for node.js
I have this on the back-end JavaScript file(chatserver.js)
server.listen(8081, "0.0.0.0");
I've also modified this line in the nowjs.js file into my external ip but still doesn't work.
window.now = nowInitialize("//localhost:8081", {});
I'm trying out the chat server example from the site. It works fine when I access it via localhost and via my external ip on my laptop. But when somebody accesses it from the outside, they can still access the page but is unable to handshake. Where could the problem be?
The text was updated successfully, but these errors were encountered: