~cytrogen/masto-fe

e428670e614b59048431c79e849d18315da98d72 — Claire 2 years ago 1483a3d
Fix CSP headers when S3_ALIAS_HOST includes a path component (#25273)

1 files changed, 1 insertions(+), 1 deletions(-)

M config/initializers/content_security_policy.rb
M config/initializers/content_security_policy.rb => config/initializers/content_security_policy.rb +1 -1
@@ 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}" if str.present?
  "http#{Rails.configuration.x.use_https ? 's' : ''}://#{str}".split('/').first if str.present?
end

base_host = Rails.configuration.x.web_domain