-if defined?(CSP_REPORT_URL)
- csp_policy = {
- :default_src => %w['self'],
- :child_src => %w['self'],
- :connect_src => %w['self'],
- :font_src => %w['none'],
- :form_action => %w['self'],
- :frame_ancestors => %w['self'],
- :img_src => %w['self' data: www.gravatar.com *.wp.com *.tile.openstreetmap.org *.tile.thunderforest.com *.openstreetmap.fr],
- :media_src => %w['none'],
- :object_src => %w['self'],
- :plugin_types => %w[],
- :script_src => %w['self'],
- :style_src => %w['self' 'unsafe-inline'],
- :report_uri => [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.openstreetmap.org *.tile.thunderforest.com *.openstreetmap.fr],
+ :manifest_src => %w['self'],
+ :media_src => %w['none'],
+ :object_src => %w['self'],
+ :plugin_types => %w[],
+ :script_src => %w['self'],
+ :style_src => %w['self'],
+ :worker_src => %w['none'],
+ :report_uri => []
+}