Corrected the default IP binding (0.0.0.0 instead of 127.0.0.1)
This commit is contained in:
parent
68683890e1
commit
c6ab8edd44
|
@ -10,7 +10,7 @@ OPTIONS = {
|
||||||
|
|
||||||
# Overridable options
|
# Overridable options
|
||||||
:port => 2500,
|
:port => 2500,
|
||||||
:ip => '127.0.0.1',
|
:ip => '0.0.0.0',
|
||||||
:environment => 'production',
|
:environment => 'production',
|
||||||
:server_root => File.expand_path(File.dirname(__FILE__) + '/../public/'),
|
:server_root => File.expand_path(File.dirname(__FILE__) + '/../public/'),
|
||||||
:server_type => WEBrick::SimpleServer,
|
:server_type => WEBrick::SimpleServer,
|
||||||
|
|
Loading…
Reference in a new issue