diff options
author | Sheogorath | 2018-03-30 16:33:32 +0200 |
---|---|---|
committer | Sheogorath | 2018-03-30 16:33:52 +0200 |
commit | d939de17df08b7a2ff8302869981f4fc88566cd9 (patch) | |
tree | 928502f8fef68664f43a8f2443c50de745312d18 /config.json.example | |
parent | d2cce7638a78ca7616607217b179c15915452058 (diff) |
Fix CSP for disqus and Google Analytics
This commit should fix existing problems with Disqus and Google
Analytics enabled in the meta-yaml section of a note.
Before this commit they were blocked by the strict CSP. It's still
possible to disable the added directives using `addDisqus` and
`addGoogleAnalytics` in the `csp` config section.
They are enabled by default to prevent breaking changes.
Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
Diffstat (limited to 'config.json.example')
-rw-r--r-- | config.json.example | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/config.json.example b/config.json.example index 8d1b6abd..2d9b7714 100644 --- a/config.json.example +++ b/config.json.example @@ -27,7 +27,9 @@ "directives": { }, "upgradeInsecureRequests": "auto" - "addDefaults": true + "addDefaults": true, + "addDisqus": true, + "addGoogleAnalytics": true }, "db": { "username": "", |