5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-07-03 06:26:08 +00:00
panel/config/initializers/content_security_policy.rb

40 lines
1.6 KiB
Ruby
Raw Normal View History

2019-08-29 17:54:19 +00:00
# frozen_string_literal: true
# Be sure to restart your server when you modify this file.
# Define an application-wide content security policy
# For further information see the following documentation
# https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy
2020-02-06 16:11:17 +00:00
Rails.application.config.content_security_policy do |policy|
policy.default_src :self
# XXX: Varios scripts generan estilos en línea
policy.style_src :self, :unsafe_inline
# Repetimos la default para poder saber cuál es la política en falta
policy.script_src :self
policy.font_src :self
2020-02-07 23:38:56 +00:00
# XXX: Los íconos de Trix se cargan vía data:
2020-10-19 15:46:25 +00:00
policy.img_src :self, :data, :https
2020-02-06 16:11:17 +00:00
# Ya no usamos applets!
policy.object_src :none
if Rails.env.development?
policy.connect_src :self,
'http://localhost:3035',
'ws://localhost:3035'
end
2019-08-29 17:54:19 +00:00
2020-02-06 16:11:17 +00:00
# Specify URI for violation reports
policy.report_uri "https://api.#{ENV.fetch('SUTTY_WITH_PORT', 'sutty.nl')}/v1/csp_reports.json"
end
2019-08-29 17:54:19 +00:00
# If you are using UJS then enable automatic nonce generation
2020-02-06 16:11:17 +00:00
# Rails.application.config.content_security_policy_nonce_generator = -> request { SecureRandom.base64(16) }
2019-08-29 17:54:19 +00:00
# Set the nonce only to specific directives
2020-02-06 16:11:17 +00:00
# Rails.application.config.content_security_policy_nonce_directives = %w(script-src)
2019-08-29 17:54:19 +00:00
# Report CSP violations to a specified URI
# For further information see the following documentation:
# https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy-Report-Only
2020-02-06 16:11:17 +00:00
Rails.application.config.content_security_policy_report_only = false