mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-12-27 02:04:33 +08:00
Fix CSP script-src [SCI-8634] (#5781)
This commit is contained in:
parent
504a0bee62
commit
4808f6438c
1 changed files with 2 additions and 3 deletions
|
@ -11,8 +11,7 @@ ActiveSupport::Reloader.to_prepare do
|
|||
policy.font_src :self, :https, :data
|
||||
policy.img_src :self, :https, :data, :blob
|
||||
policy.object_src :none
|
||||
policy.script_src :self, :unsafe_eval
|
||||
policy.script_src_elem :self, :unsafe_eval, *Extends::EXTERNAL_SERVICES
|
||||
policy.script_src :self, :unsafe_eval, *Extends::EXTERNAL_SERVICES
|
||||
policy.style_src :self, :https, :unsafe_inline, :data
|
||||
policy.connect_src :self, :data, *Extends::EXTERNAL_SERVICES
|
||||
|
||||
|
@ -32,7 +31,7 @@ Rails.application.config.content_security_policy_nonce_generator = -> (request)
|
|||
end
|
||||
|
||||
# Set the nonce only to specific directives
|
||||
Rails.application.config.content_security_policy_nonce_directives = %w(script-src script-src-elem)
|
||||
Rails.application.config.content_security_policy_nonce_directives = %w(script-src)
|
||||
|
||||
# Report CSP violations to a specified URI
|
||||
# For further information see the following documentation:
|
||||
|
|
Loading…
Reference in a new issue