From c6ab8edd44340fd3311697afffad944d1f08858d Mon Sep 17 00:00:00 2001 From: Alexey Verkhovsky Date: Tue, 29 Mar 2005 03:51:52 +0000 Subject: [PATCH] Corrected the default IP binding (0.0.0.0 instead of 127.0.0.1) --- script/server | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/server b/script/server index cfa15393..06e6e2d1 100755 --- a/script/server +++ b/script/server @@ -10,7 +10,7 @@ OPTIONS = { # Overridable options :port => 2500, - :ip => '127.0.0.1', + :ip => '0.0.0.0', :environment => 'production', :server_root => File.expand_path(File.dirname(__FILE__) + '/../public/'), :server_type => WEBrick::SimpleServer,