X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/cb87f02642d0097ebc067ca1f9371dde274a41e3..584ac67c103c6b2ac17396cc2b65c35bede13403:/config/initializers/secure_headers.rb diff --git a/config/initializers/secure_headers.rb b/config/initializers/secure_headers.rb index f4633d72f..cd6979bee 100644 --- a/config/initializers/secure_headers.rb +++ b/config/initializers/secure_headers.rb @@ -1,20 +1,26 @@ if defined?(CSP_REPORT_URL) csp_policy = { + :preserve_schemes => true, :default_src => %w['self'], :child_src => %w['self'], :connect_src => %w['self'], :font_src => %w['none'], :form_action => %w['self'], :frame_ancestors => %w['self'], + :frame_src => %w['self'], :img_src => %w['self' data: www.gravatar.com *.wp.com *.tile.openstreetmap.org *.tile.thunderforest.com *.openstreetmap.fr], + :manifest_src => %w['none'], :media_src => %w['none'], :object_src => %w['self'], :plugin_types => %w[], :script_src => %w['self'], - :style_src => %w['self' 'unsafe-inline'], + :style_src => %w['self'], + :worker_src => %w['none'], :report_uri => [CSP_REPORT_URL] } + csp_policy[:connect_src] << PIWIK["location"] if defined?(PIWIK) + csp_policy[:img_src] << PIWIK["location"] if defined?(PIWIK) csp_policy[:script_src] << PIWIK["location"] if defined?(PIWIK) else csp_policy = SecureHeaders::OPT_OUT @@ -26,7 +32,7 @@ cookie_policy = { } SecureHeaders::Configuration.default do |config| - config.hsts = "max-age=0" + config.hsts = SecureHeaders::OPT_OUT config.csp = SecureHeaders::OPT_OUT config.csp_report_only = csp_policy config.cookies = cookie_policy