Skip to content
Snippets Groups Projects
Commit 8203e24c authored by ThibG's avatar ThibG Committed by Eugen Rochko
Browse files

Fix CSP needlessly allowing blob URLs in script-src (#11620)

parent dff46b26
No related branches found
No related tags found
No related merge requests found
......@@ -31,10 +31,12 @@ Rails.application.config.content_security_policy do |p|
webpacker_urls = %w(ws http).map { |protocol| "#{protocol}#{Webpacker.dev_server.https? ? 's' : ''}://#{Webpacker.dev_server.host_with_port}" }
p.connect_src :self, :data, :blob, assets_host, media_host, Rails.configuration.x.streaming_api_base_url, *webpacker_urls
p.script_src :self, :blob, :unsafe_inline, :unsafe_eval, assets_host
p.script_src :self, :unsafe_inline, :unsafe_eval, assets_host
p.worker_src :self, :blob, assets_host
else
p.connect_src :self, :data, :blob, assets_host, media_host, Rails.configuration.x.streaming_api_base_url
p.script_src :self, :blob, assets_host
p.script_src :self, assets_host
p.worker_src :self, :blob, assets_host
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