Skip to content
Snippets Groups Projects
Commit 68c93f8b authored by Eugen Rochko's avatar Eugen Rochko
Browse files

Final fix for ActionCable origin issues

parent 8985f8e6
No related branches found
No related tags found
No related merge requests found
......@@ -80,6 +80,4 @@ Rails.application.configure do
}
config.action_mailer.delivery_method = :smtp
config.action_cable.allowed_request_origins = ["http#{config.x.use_https ? 's' : ''}://#{config.x.local_domain}"]
end
......@@ -4,4 +4,8 @@ Rails.application.configure do
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://' }
if Rails.env.production?
config.action_cable.allowed_request_origins = ["http#{config.x.use_https ? 's' : ''}://#{config.x.local_domain}"]
end
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment