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.
17 lines
562 B
17 lines
562 B
# frozen_string_literal: true |
|
|
|
port = ENV.fetch('PORT') { 3000 } |
|
host = ENV.fetch('LOCAL_DOMAIN') { "localhost:#{port}" } |
|
https = ENV['LOCAL_HTTPS'] == 'true' |
|
|
|
Rails.application.configure do |
|
config.x.local_domain = host |
|
config.x.use_https = https |
|
config.x.use_s3 = ENV['S3_ENABLED'] == 'true' |
|
|
|
config.action_mailer.default_url_options = { host: host, protocol: https ? 'https://' : 'http://', trailing_slash: false } |
|
|
|
if Rails.env.production? |
|
config.action_cable.allowed_request_origins = ["http#{https ? 's' : ''}://#{host}"] |
|
end |
|
end
|
|
|