Browse Source

Fix CSP headers when S3_ALIAS_HOST includes a path component (#25273)

pull/1325/head
Claire 3 years ago
parent
commit
a197fc094f
  1. 2
      config/initializers/content_security_policy.rb

2
config/initializers/content_security_policy.rb

@ -3,7 +3,7 @@
# https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy
def host_to_url(str)
"http#{Rails.configuration.x.use_https ? 's' : ''}://#{str}" unless str.blank?
"http#{Rails.configuration.x.use_https ? 's' : ''}://#{str}".split('/').first if str.present?
end
base_host = Rails.configuration.x.web_domain

Loading…
Cancel
Save