1 if defined?(CSP_REPORT_URL)
3 :default_src => %w['self'],
4 :child_src => %w['self'],
5 :connect_src => %w['self'],
6 :font_src => %w['none'],
7 :form_action => %w['self'],
8 :frame_ancestors => %w['self'],
9 :frame_src => %w['self'],
10 :img_src => %w['self' data: www.gravatar.com *.wp.com *.tile.openstreetmap.org *.tile.thunderforest.com *.openstreetmap.fr],
11 :media_src => %w['none'],
12 :object_src => %w['self'],
13 :plugin_types => %w[],
14 :script_src => %w['self'],
15 :style_src => %w['self' 'unsafe-inline'],
16 :report_uri => [CSP_REPORT_URL]
19 csp_policy[:img_src] << PIWIK["location"] if defined?(PIWIK)
20 csp_policy[:script_src] << PIWIK["location"] if defined?(PIWIK)
22 csp_policy = SecureHeaders::OPT_OUT
26 :secure => SecureHeaders::OPT_OUT,
27 :httponly => SecureHeaders::OPT_OUT
30 SecureHeaders::Configuration.default do |config|
31 config.hsts = SecureHeaders::OPT_OUT
32 config.csp = SecureHeaders::OPT_OUT
33 config.csp_report_only = csp_policy
34 config.cookies = cookie_policy