]> git.openstreetmap.org Git - rails.git/blobdiff - config/initializers/secure_headers.rb
Localisation updates from https://translatewiki.net.
[rails.git] / config / initializers / secure_headers.rb
index 13db365099a9eeacd1fa0dc1aa4376196728a5e0..e53ea6cef3d2e222a0d873e2cf2c4be0f53112ee 100644 (file)
@@ -1,24 +1,27 @@
-policy = if defined?(CSP_REPORT_URL)
-           {
-             :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('none'),
-             :script_src => %w('self' 'unsafe-inline'),
-             :style_src => %w('self' 'unsafe-inline'),
-             :report_uri => [CSP_REPORT_URL]
-           }
-         else
-           SecureHeaders::OPT_OUT
-         end
+if defined?(CSP_REPORT_URL)
+  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('none'),
+    :script_src => %w('self'),
+    :style_src => %w('self' 'unsafe-inline'),
+    :report_uri => [CSP_REPORT_URL]
+  }
+
+  policy[:script_src] << PIWIK["location"] if defined?(PIWIK)
+else
+  policy = SecureHeaders::OPT_OUT
+end
 
 SecureHeaders::Configuration.default do |config|
+  config.hsts = "max-age=0"
   config.csp = SecureHeaders::OPT_OUT
   config.csp_report_only = policy
 end