fixed rendering error with css
[selectricity] / config / environments / production.rb
1 # Settings specified here will take precedence over those in config/environment.rb
2 #
3 #Enable memcache
4 #require('memcache')
5 #Cache=MemCache.new('localhost', :compression => true)
6 # The production environment is meant for finished, "live" apps.
7 # Code is not reloaded between requests
8 config.cache_classes = true
9
10 # Use a different logger for distributed setups
11 # config.logger = SyslogLogger.new
12
13 # Full error reports are disabled and caching is turned on
14 config.action_controller.consider_all_requests_local = false
15 config.action_controller.perform_caching             = true
16
17 # Enable serving of images, stylesheets, and javascripts from an asset server
18 # config.action_controller.asset_host                  = "http://assets.example.com"
19
20 # Disable delivery errors, bad email addresses will be ignored
21 # config.action_mailer.raise_delivery_errors = false

Benjamin Mako Hill || Want to submit a patch?