From: Marius Gavrilescu Date: Tue, 24 Feb 2015 19:51:00 +0000 (+0200) Subject: Remove google-analytics.com from CSP as it is specific to mindcoding X-Git-Url: http://git.ieval.ro/?p=plack-app-gruntmaster.git;a=commitdiff_plain;h=1ca1e044db4c9ff84b8904ef2c89766c6f076a69 Remove google-analytics.com from CSP as it is specific to mindcoding --- diff --git a/app.psgi b/app.psgi index 51fb98d..dc9f75b 100644 --- a/app.psgi +++ b/app.psgi @@ -13,7 +13,7 @@ use Tie::Hash::Expire; use constant AUTH_TIMEOUT => 5 * 60; use constant ACCESSLOG_FORMAT => 'combined'; -use constant CONTENT_SECURITY_POLICY => q,default-src 'none'; script-src 'self' www.google-analytics.com; style-src 'self'; img-src 'self'; connect-src 'self',; +use constant CONTENT_SECURITY_POLICY => q,default-src 'none'; script-src 'self'; style-src 'self'; img-src 'self'; connect-src 'self',; our $db //= Gruntmaster::Data->connect($ENV{GRUNTMASTER_DSN} // 'dbi:Pg:');