From 6a1a4a3f7deef24396f963318c0e9c1c7af5bc92 Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Fri, 24 Nov 2017 00:46:27 +0000 Subject: [PATCH] Fix remote editing security policy --- app/controllers/application_controller.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb index 5000130a1..9d7642eab 100644 --- a/app/controllers/application_controller.rb +++ b/app/controllers/application_controller.rb @@ -413,8 +413,8 @@ class ApplicationController < ActionController::Base def map_layout append_content_security_policy_directives( - :child_src => %w[127.0.0.1:8111], - :connect_src => %w[127.0.0.1:8112 nominatim.openstreetmap.org overpass-api.de router.project-osrm.org valhalla.mapzen.com], + :child_src => %w[127.0.0.1:8111 127.0.0.1:8112], + :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] ) -- 2.43.2