clarion/config/initializers/content_security_policy.rb

26 lines
1.0 KiB
Ruby
Raw Permalink Normal View History

2019-04-28 02:37:53 +03:00
# Be sure to restart your server when you modify this file.
2024-02-19 22:16:52 +02:00
# Define an application-wide content security policy.
# See the Securing Rails Applications Guide for more information:
# https://guides.rubyonrails.org/security.html#content-security-policy-header
2019-04-28 02:37:53 +03:00
2024-02-19 22:16:52 +02:00
# Rails.application.configure do
# config.content_security_policy do |policy|
# policy.default_src :self, :https
# policy.font_src :self, :https, :data
# policy.img_src :self, :https, :data
# policy.object_src :none
# policy.script_src :self, :https
# policy.style_src :self, :https
# # Specify URI for violation reports
# # policy.report_uri "/csp-violation-report-endpoint"
# end
#
2024-02-19 22:21:40 +02:00
# # Generate session nonces for permitted importmap, inline scripts, and inline styles.
2024-02-19 22:16:52 +02:00
# config.content_security_policy_nonce_generator = ->(request) { request.session.id.to_s }
2024-02-19 22:21:40 +02:00
# config.content_security_policy_nonce_directives = %w(script-src style-src)
2024-02-19 22:16:52 +02:00
#
# # Report violations without enforcing the policy.
# # config.content_security_policy_report_only = true
2019-04-28 02:37:53 +03:00
# end