dyoder (owner)

Revisions

gist: 109796 Download_button fork
public
Public Clone URL: git://gist.github.com/109796.git
Embed All Files: show embed
production.rb #
1
2
3
4
5
6
7
8
9
10
11
12
module MyApp
  module Configurations
    class Production < Development
      host '0.0.0.0'
      port 80
      application do
        use Rack::Static, :root => "public"
        run Waves::Dispatchers::Fast.new
      end
    end
  end
end