Reputation: 608
I'm viewing a locally hosted website (using grunt serve
, if that matters). I can view it via http://localhost:9000/
or http://127.0.0.1:9000/
, but not via http://10.0.0.16:9000/
.
10.0.0.16 is my local IP address (from ifconfig
or System Preferences), but I cannot access my locally hosted content at http://10.0.0.16:9000/
from either the device that is hosting it or from other devices on the network.
I haven't had trouble using my local IP address to access locally hosted sites when my computer is on other networks, only on my home network. Do you have any idea what needs to change?
Upvotes: 52
Views: 106468
Reputation: 32953
If you can access a server running on your own machine via 127.0.0.1
(or localhost
) but not via the computer's ip address, this means that the server software is configured to listen on the localhost interface only. This is a configuration item and to avoid exposing a potentially unsecure server many server programs come preconfigured to listen on localhost only. That way you can safely test locally before exposing the server.
To start your server "listening on all interfaces present on this computer", configure it to bind to host=0.0.0.0
. This is convenient, but may cause security issues if the machine has multiple interfaces.
Upvotes: 71