mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
850b042cab
under rack cache we are able to serve 620reqs a second per thin (on my machine) before it 12 (on my machine) reorganised so mini profilers can be cleanly disabled from config file added caching for categories index move production.rb to production.sample.rb
47 lines
1.5 KiB
Ruby
47 lines
1.5 KiB
Ruby
Discourse::Application.configure do
|
|
# Settings specified here will take precedence over those in config/application.rb
|
|
|
|
# Code is not reloaded between requests
|
|
config.cache_classes = true
|
|
|
|
# Full error reports are disabled and caching is turned on
|
|
config.consider_all_requests_local = false
|
|
config.action_controller.perform_caching = true
|
|
|
|
# in profile mode we serve static assets
|
|
config.serve_static_assets = true
|
|
|
|
# Compress JavaScripts and CSS
|
|
config.assets.compress = true
|
|
|
|
# stuff should be pre-compiled, allow compilation to make life easier
|
|
config.assets.compile = true
|
|
|
|
# Generate digests for assets URLs
|
|
config.assets.digest = true
|
|
|
|
# Specifies the header that your server uses for sending files
|
|
config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
|
|
|
|
# Enable locale fallbacks for I18n (makes lookups for any locale fall back to
|
|
# the I18n.default_locale when a translation can not be found)
|
|
config.i18n.fallbacks = true
|
|
|
|
config.action_mailer.delivery_method = :sendmail
|
|
config.action_mailer.sendmail_settings = {arguments: '-i'}
|
|
|
|
# Send deprecation notices to registered listeners
|
|
config.active_support.deprecation = :notify
|
|
|
|
# precompile handlebar assets
|
|
config.handlebars.precompile = true
|
|
|
|
# this setting enable rack_cache so it caches various requests in redis
|
|
config.enable_rack_cache = false
|
|
|
|
# allows users to use mini profiler
|
|
config.enable_mini_profiler = false
|
|
|
|
# for profiling with perftools
|
|
# config.middleware.use ::Rack::PerftoolsProfiler, default_printer: 'gif'
|
|
end
|