You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
623 B

  1. Rails.application.configure do
  2. config.x.local_domain = ENV['LOCAL_DOMAIN'] || "localhost:#{ENV['PORT'] || 3000}"
  3. config.x.hub_url = ENV['HUB_URL'] || 'https://pubsubhubbub.superfeedr.com'
  4. config.x.use_https = ENV['LOCAL_HTTPS'] == 'true'
  5. config.x.use_s3 = ENV['S3_ENABLED'] == 'true'
  6. config.action_mailer.default_url_options = { host: config.x.local_domain, protocol: config.x.use_https ? 'https://' : 'http://', trailing_slash: false }
  7. if Rails.env.production?
  8. config.action_cable.allowed_request_origins = ["http#{config.x.use_https ? 's' : ''}://#{config.x.local_domain}"]
  9. end
  10. end