Add "unsafe-eval" to script-src CSP (#18817)
This commit is contained in:
parent
eebbc5439a
commit
aafbc82d88
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ Rails.application.config.content_security_policy do |p|
|
||||||
p.worker_src :self, :blob, assets_host
|
p.worker_src :self, :blob, assets_host
|
||||||
else
|
else
|
||||||
p.connect_src :self, :data, :blob, assets_host, media_host, Rails.configuration.x.streaming_api_base_url
|
p.connect_src :self, :data, :blob, assets_host, media_host, Rails.configuration.x.streaming_api_base_url
|
||||||
p.script_src :self, assets_host
|
p.script_src :self, assets_host, :unsafe_eval
|
||||||
p.child_src :self, :blob, assets_host
|
p.child_src :self, :blob, assets_host
|
||||||
p.worker_src :self, :blob, assets_host
|
p.worker_src :self, :blob, assets_host
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue