X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/81deb3533118f8a14b632a4ad05213b896a892f8..713de1fadbfa155d477df6c9fb2977fb8689d3c2:/config/application.rb diff --git a/config/application.rb b/config/application.rb index 02dd1d2b2..3220ab591 100644 --- a/config/application.rb +++ b/config/application.rb @@ -34,9 +34,7 @@ module OpenStreetMap config.paths["app/models"].skip_eager_load! if STATUS == :database_offline # Use memcached for caching if required - if defined?(MEMCACHE_SERVERS) - config.cache_store = :mem_cache_store, MEMCACHE_SERVERS, { :namespace => "rails:cache" } - end + config.cache_store = :mem_cache_store, MEMCACHE_SERVERS, { :namespace => "rails:cache" } if defined?(MEMCACHE_SERVERS) # Use logstash for logging if required if defined?(LOGSTASH_PATH) @@ -46,7 +44,7 @@ module OpenStreetMap config.logstasher.log_controller_parameters = true end - # Configure image optimisation - config.assets.image_optim = YAML.load_file(Rails.root.join("config", "image_optim.yml")) + # Set the host and protocol for all action mailer urls + config.action_mailer.default_url_options = { :host => SERVER_URL, :protocol => SERVER_PROTOCOL } end end