The code powering m.abunchtell.com https://m.abunchtell.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

108 lines
4.0 KiB

  1. Rails.application.configure do
  2. # Settings specified here will take precedence over those in config/application.rb.
  3. # Code is not reloaded between requests.
  4. config.cache_classes = true
  5. # Eager load code on boot. This eager loads most of Rails and
  6. # your application in memory, allowing both threaded web servers
  7. # and those relying on copy on write to perform better.
  8. # Rake tasks automatically ignore this option for performance.
  9. config.eager_load = true
  10. # Full error reports are disabled and caching is turned on.
  11. config.consider_all_requests_local = false
  12. config.action_controller.perform_caching = true
  13. config.action_controller.asset_host = ENV['CDN_HOST'] if ENV.key?('CDN_HOST')
  14. # Disable serving static files from the `/public` folder by default since
  15. # Apache or NGINX already handles this.
  16. config.public_file_server.enabled = ENV['RAILS_SERVE_STATIC_FILES'].present?
  17. # Compress JavaScripts and CSS.
  18. config.assets.js_compressor = Uglifier.new(mangle: false)
  19. # config.assets.css_compressor = :sass
  20. # Do not fallback to assets pipeline if a precompiled asset is missed.
  21. config.assets.compile = false
  22. # `config.assets.precompile` and `config.assets.version` have moved to config/initializers/assets.rb
  23. # Specifies the header that your server uses for sending files.
  24. # config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache
  25. config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX
  26. # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
  27. config.force_ssl = false
  28. # Use the lowest log level to ensure availability of diagnostic information
  29. # when problems arise.
  30. config.log_level = :debug
  31. # Prepend all log lines with the following tags.
  32. config.log_tags = [ :request_id ]
  33. # Use a different logger for distributed setups.
  34. # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
  35. # Parse and split the REDIS_URL if passed (used with hosting platforms such as Heroku).
  36. # Set ENV variables because they are used elsewhere.
  37. if ENV['REDIS_URL']
  38. redis_url = URI.parse(ENV['REDIS_URL'])
  39. ENV['REDIS_HOST'] = redis_url.host
  40. ENV['REDIS_PORT'] = redis_url.port.to_s
  41. ENV['REDIS_PASSWORD'] = redis_url.password
  42. end
  43. # Use a different cache store in production.
  44. config.cache_store = :redis_store, {
  45. host: ENV.fetch('REDIS_HOST') { 'localhost' },
  46. port: ENV.fetch('REDIS_PORT') { 6379 },
  47. password: ENV.fetch('REDIS_PASSWORD') { false },
  48. db: 0,
  49. namespace: 'cache',
  50. expires_in: 20.minutes
  51. }
  52. # Enable serving of images, stylesheets, and JavaScripts from an asset server.
  53. # config.action_controller.asset_host = 'http://assets.example.com'
  54. # Ignore bad email addresses and do not raise email delivery errors.
  55. # Set this to true and configure the email server for immediate delivery to raise delivery errors.
  56. # config.action_mailer.raise_delivery_errors = false
  57. # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
  58. # the I18n.default_locale when a translation cannot be found).
  59. config.i18n.fallbacks = true
  60. # Send deprecation notices to registered listeners.
  61. config.active_support.deprecation = :notify
  62. # Use default logging formatter so that PID and timestamp are not suppressed.
  63. config.log_formatter = ::Logger::Formatter.new
  64. # Better log formatting
  65. config.lograge.enabled = true
  66. # Do not dump schema after migrations.
  67. config.active_record.dump_schema_after_migration = false
  68. config.action_mailer.perform_caching = false
  69. # E-mails
  70. config.action_mailer.smtp_settings = {
  71. :port => ENV['SMTP_PORT'],
  72. :address => ENV['SMTP_SERVER'],
  73. :user_name => ENV['SMTP_LOGIN'],
  74. :password => ENV['SMTP_PASSWORD'],
  75. :domain => ENV['SMTP_DOMAIN'] || config.x.local_domain,
  76. :authentication => :plain,
  77. }
  78. config.action_mailer.delivery_method = :smtp
  79. config.react.variant = :production
  80. config.active_record.logger = nil
  81. end