diff options
author | Robin Houston <robin@lenny.robin> | 2011-06-09 17:11:47 +0100 |
---|---|---|
committer | Robin Houston <robin@lenny.robin> | 2011-06-09 17:11:47 +0100 |
commit | 14bba8cd713cc7aa003240834d47771f186220a1 (patch) | |
tree | 0e083f71b15196f8f9b404255a0ca58c70f552ad | |
parent | 2d205979d6e75f36ea511645b07be1bfd9a57f66 (diff) |
The rails server listens on all interfaces by default, not on the loopback interface.
-rw-r--r-- | INSTALL.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/INSTALL.txt b/INSTALL.txt index 2379cdfdd..da8d52384 100644 --- a/INSTALL.txt +++ b/INSTALL.txt @@ -120,12 +120,12 @@ wrong. run the following to get the server running (may need to chmod 755 again) > ./script/server --environment=development -or if you want the server to be available on the network and not just -on localhost tell it your IP address by running +By default the server listens on all interfaces. You can restrict it to the +localhost interface by adding --binding=127.0.0.1 -> ./script/server --environment=development --binding=10.0.0.11 +You’ll probably need to install various things to make this work. The server +script will tell you about any missing dependencies. -Obviously, change 10.0.0.11 to your own IP address. 5. Success ---------- |