Add CSP header to static resources

Fixes https://github.com/owncloud/core/issues/16164
remotes/origin/fix_emit_scanFiles
Lukas Reschke 9 years ago
parent 857030d139
commit 7b9bc721e9

@ -14,6 +14,10 @@
Header set X-Robots-Tag "none"
Header set X-Frame-Options "SAMEORIGIN"
SetEnv modHeadersAvailable true
# Add CSP header if not set, used for static resources
Header append Content-Security-Policy ""
Header edit Content-Security-Policy "^$" "default-src 'none'; style-src 'self' 'unsafe-inline'; script-src 'self'"
</IfModule>
# Add cache control for CSS and JS files

Loading…
Cancel
Save