This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-02-22 09:10:30 -08:00
|
|
|
Rails.application.configure do
|
2016-02-29 11:06:39 -08:00
|
|
|
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://' }
|
2016-02-22 09:10:30 -08:00
|
|
|
end
|