Sha256: e0296946e420aba1c22b75b9503e50a6f19930160f77df871f7f393ecc00be86
Contents?: true
Size: 555 Bytes
Versions: 6
Compression:
Stored size: 555 Bytes
Contents
module Blog module Configurations class Production < Default debug false reloadable [] log :level => :warn, :output => ( :log / "waves.production" ) host '0.0.0.0' port 4000 application do use ::Rack::Static, :urls => %w( /css /javascript /favicon.ico ), :root => 'public' use Rack::Session::Cookie, :key => 'blog.session', :path => '/', :expire_after => 3.days run ::Waves::Dispatchers::Default.new end end end end
Version data entries
6 entries across 6 versions & 4 rubygems