You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Vagrant
Hi Guys - I'm port forwarding to an http server scripted in node.js -
whilst port forwarding apache at the same time. The node server is
receiving requests fine from localhost on the vm but not via the
forwarded port on the host machine...any thoughts?
Mitchell Hashimoto
unread,
Jan 22, 2011, 2:29:06 PM1/22/11
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to vagra...@googlegroups.com
This is usually caused because the node.js server is probably binding itself to 127.0.0.1 which is the loopback interface, where it really needs to bind itself to 0.0.0.0 so it is visible to the outside world.