chinwagsocial/config/initializers/ostatus.rb

15 lines
657 B
Ruby
Raw Normal View History

port = ENV.fetch('PORT') { 3000 }
2016-02-23 04:10:30 +11:00
Rails.application.configure do
config.x.local_domain = ENV.fetch('LOCAL_DOMAIN') { "localhost:#{port}" }
config.x.hub_url = ENV.fetch('HUB_URL') { 'https://pubsubhubbub.superfeedr.com' }
config.x.use_https = ENV['LOCAL_HTTPS'] == 'true'
config.x.use_s3 = ENV['S3_ENABLED'] == 'true'
config.action_mailer.default_url_options = { host: config.x.local_domain, protocol: config.x.use_https ? 'https://' : 'http://', trailing_slash: false }
if Rails.env.production?
config.action_cable.allowed_request_origins = ["http#{config.x.use_https ? 's' : ''}://#{config.x.local_domain}"]
end
2016-02-23 04:10:30 +11:00
end