mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-09-30 08:54:31 +08:00
Update CSP script-src-elem [SCI-8634] (#5775)
This commit is contained in:
parent
51a19a559b
commit
18f383c543
1 changed files with 2 additions and 2 deletions
|
@ -12,7 +12,7 @@ ActiveSupport::Reloader.to_prepare do
|
|||
policy.img_src :self, :https, :data, :blob
|
||||
policy.object_src :none
|
||||
policy.script_src :self, :unsafe_eval
|
||||
policy.script_src_elem :self, *Extends::EXTERNAL_SERVICES
|
||||
policy.script_src_elem :self, :unsafe_eval, *Extends::EXTERNAL_SERVICES
|
||||
policy.style_src :self, :https, :unsafe_inline, :data
|
||||
policy.connect_src :self, :data, *Extends::EXTERNAL_SERVICES
|
||||
|
||||
|
@ -32,7 +32,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)
|
||||
Rails.application.config.content_security_policy_nonce_directives = %w(script-src script-src-elem)
|
||||
|
||||
# Report CSP violations to a specified URI
|
||||
# For further information see the following documentation:
|
||||
|
|
Loading…
Add table
Reference in a new issue