1:3000以外のポートを指定
$ rails s -p3001
http://0.0.0.0:3001にアクセス。
参考
2:ポート80番に指定
$ sudo rails server -p 80
http://0.0.0.0/にアクセス。
参考
http://yoshifumisato.jeez.jp/wordpress/post/ruby/935
3:デフォルトポートを変更
rails sを実行した際に3000以外のポートで起動したい場合、config/boot.rbなどに以下を書く。
require 'rails/commands/server' module Rails class Server def default_options super.merge({ :Port => 4000 }) end end end