blob: 3cb17c7181fe9f3a4354ee9a6e4eaed6abaf2645 (
plain) (
blame)
1
2
3
4
5
6
7
|
Rails.application.configure do
config.x.local_domain = ENV['LOCAL_DOMAIN'] || 'localhost'
config.x.hub_url = ENV['HUB_URL'] || 'https://pubsubhubbub.superfeedr.com'
config.x.use_https = ENV['LOCAL_HTTPS'] == 'true'
config.action_mailer.default_url_options = { host: config.x.local_domain, protocol: config.x.use_https ? 'https://' : 'http://' }
end
|