Bind host to 0.0.0.0

This commit is contained in:
Sdogruyol 2015-12-07 09:16:51 +02:00
parent 2ffb4dccdf
commit bee7ce2452
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ at_exit do
config.add_handler Kemal::Handler::INSTANCE
config.add_handler HTTP::StaticFileHandler.new("./public")
server = HTTP::Server.new(config.port, config.handlers)
server = HTTP::Server.new("0.0.0.0", config.port, config.handlers)
server.ssl = config.ssl
logger.write "[#{config.env}] Kemal is ready to lead at #{config.scheme}://0.0.0.0:#{config.port}\n"