From dea5db0e25058ae81f9a5120e4154458768a28cb Mon Sep 17 00:00:00 2001
From: ThibG <thib@sitedethib.com>
Date: Mon, 4 May 2020 13:52:41 +0200
Subject: [PATCH] Fix PgHero Content-Security-Policy when CDN_HOST is used
 (#13595)

---
 config/initializers/content_security_policy.rb | 5 +++++
 config/pghero.yml                              | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/config/initializers/content_security_policy.rb b/config/initializers/content_security_policy.rb
index 654e2e8cde..f26d9c8ea3 100644
--- a/config/initializers/content_security_policy.rb
+++ b/config/initializers/content_security_policy.rb
@@ -46,3 +46,8 @@ end
 # For further information see the following documentation:
 # https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy-Report-Only
 # Rails.application.config.content_security_policy_report_only = true
+
+PgHero::HomeController.content_security_policy do |p|
+  p.script_src :self, :unsafe_inline, assets_host
+  p.style_src  :self, :unsafe_inline, assets_host
+end
diff --git a/config/pghero.yml b/config/pghero.yml
index 244245d0df..84d0d7eef0 100644
--- a/config/pghero.yml
+++ b/config/pghero.yml
@@ -38,4 +38,4 @@ databases:
 # aws_secret_access_key: ...
 # aws_region: us-east-1
 
-override_csp: true
+override_csp: false
-- 
GitLab