]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/application_controller.rb
Improve the content security policy
[rails.git] / app / controllers / application_controller.rb
index 15d7781d8d1a6514e316fa6edcf63afb4b7c73e0..ff3f67efd975d46d76312a35f97fcf44c7899df9 100644 (file)
@@ -408,6 +408,12 @@ class ApplicationController < ActionController::Base
   end
 
   def map_layout
+    append_content_security_policy_directives(
+      :connect_src => %w(nominatim.openstreetmap.org overpass-api.de router.project-osrm.org valhalla.mapzen.com),
+      :script_src => %w(graphhopper.com open.mapquestapi.com),
+      :img_src => %w(developer.mapquest.com)
+    )
+
     request.xhr? ? "xhr" : "map"
   end