This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2016-02-23 22:17:07 +01:00
|
|
|
LOCAL_DOMAIN = ENV['LOCAL_DOMAIN'] || 'localhost'
|
|
|
|
HUB_URL = ENV['HUB_URL'] || 'https://pubsubhubbub.superfeedr.com'
|
|
|
|
CANONICAL_PROTOCOL = ENV['LOCAL_HTTPS'] == 'true' ? 'https://' : 'http://'
|
2016-02-22 18:10:30 +01:00
|
|
|
|
|
|
|
Rails.application.configure do
|
2016-02-23 22:17:07 +01:00
|
|
|
config.action_mailer.default_url_options = { host: LOCAL_DOMAIN, protocol: CANONICAL_PROTOCOL }
|
2016-02-22 18:10:30 +01:00
|
|
|
end
|