From 79284a0fcd4958ee5f45754fa1a3b87c641620e6 Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Tue, 15 May 2018 12:43:37 +0100 Subject: [PATCH] Add frame-src to allow http://127.0.0.1:8111 --- app/controllers/application_controller.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb index f92bd8cdf..f07d54860 100644 --- a/app/controllers/application_controller.rb +++ b/app/controllers/application_controller.rb @@ -410,6 +410,7 @@ class ApplicationController < ActionController::Base def map_layout append_content_security_policy_directives( :child_src => %w[http://127.0.0.1:8111], + :frame_src => %w[http://127.0.0.1:8111], :connect_src => %w[nominatim.openstreetmap.org overpass-api.de router.project-osrm.org], :form_action => %w[render.openstreetmap.org], :script_src => %w[graphhopper.com open.mapquestapi.com], -- 2.43.2