From 2b5e017aa10542dc5ec0aa9032b60743cc51617f Mon Sep 17 00:00:00 2001 From: Yoichi Imai Date: Sat, 17 Nov 2012 19:42:28 +0900 Subject: [PATCH] Pass the value of --host parameter to Rack::Server --- bin/gollum | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/gollum b/bin/gollum index bb67fe6c..61e6ecc0 100755 --- a/bin/gollum +++ b/bin/gollum @@ -185,6 +185,6 @@ else end end # Rack::Handler does not work with Ctrl + C. Use Rack::Server instead. - Rack::Server.new(:app => MapGollum.new(base_path), :Port => options['port']).start + Rack::Server.new(:app => MapGollum.new(base_path), :Port => options['port'], :Host => options['bind']).start end end