nestaに他のネットワーク上のマシンからアクセスできない

http://nestacms.com/ に沿って
Getting started
$ gem install nesta
$ gem install bundler
$ nesta new mysite.com
$ cd mysite.com
$ bundle
$ nesta demo:content
$ shotgun config.ru
Then visit http://localhost:9393...
とすると、上手く自分のマシン例えば192.168.1.10(localhost)からはアクセスできるのだが、他のマシン192.168.1.11からは見えない。

そこでshotgunの設定を変えると、見えるようになる。
$ shotgun config.ru --host 0.0.0.0

参考
http://d.hatena.ne.jp/xyk/20110105/1294195812
http://ruby.about.com/od/sinatra/a/sinatra5.htm