From 81b9d74393c72a32ecbccb0c3bfe7dd5627a1a0b Mon Sep 17 00:00:00 2001 From: Salar Rahmanian Date: Sun, 27 Oct 2024 18:54:12 -0700 Subject: [PATCH] add matomo url to content security --- config.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config.toml b/config.toml index bda482f..41a8dd5 100644 --- a/config.toml +++ b/config.toml @@ -212,9 +212,10 @@ copyright = "© $CURRENT_YEAR $AUTHOR $SEPARATOR Unless otherwise noted, the con # Default config, allows for https remote images and embedding YouTube and Vimeo content. # This configuration (along with the right webserver settings) gets an A+ in Mozilla's Observatory: https://observatory.mozilla.org allowed_domains = [ + { directive = "connect-src", domains = ["'self'", "https://wisdom.softinio.com" ] }, { directive = "font-src", domains = ["'self'", "data:"] }, { directive = "img-src", domains = ["'self'", "https://*", "data:"] }, - { directive = "script-src", domains = ["'self'", "https://comments.softinio.com/js/embed.min.js", "https://static.cloudflareinsights.com"] }, + { directive = "script-src", domains = ["'self'", "https://comments.softinio.com/js/embed.min.js", "https://static.cloudflareinsights.com", "https://wisdom.softinio.com" ] }, { directive = "style-src", domains = ["'self'"] }, { directive = "frame-src", domains = ["player.vimeo.com", "https://www.youtube-nocookie.com", "https://watch.softinio.com", "https://notes.softinio.com/embed"] }, ]