Corrected the default IP binding (0.0.0.0 instead of 127.0.0.1)

This commit is contained in:
Alexey Verkhovsky 2005-03-29 03:51:52 +00:00
parent 68683890e1
commit c6ab8edd44

View file

@ -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,