diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 21:49:20 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 21:49:20 +0000 |
commit | 81e7f04e7802b89882aaa8fbd71b813177b4d5de (patch) | |
tree | c4c7222f71c7ca3b2001d7b797d5d5be64ce2d7b /debian/config-dir/conf-available/csp.conf | |
parent | Setting ServerSignature to Off in security.conf. (diff) | |
download | apache2-81e7f04e7802b89882aaa8fbd71b813177b4d5de.tar.xz apache2-81e7f04e7802b89882aaa8fbd71b813177b4d5de.zip |
Setting Content-Security-Policy to "default-src https: 'self'; style-src https: 'self' 'unsafe-inline'".
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | debian/config-dir/conf-available/csp.conf | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/debian/config-dir/conf-available/csp.conf b/debian/config-dir/conf-available/csp.conf new file mode 100644 index 0000000..ccbeadf --- /dev/null +++ b/debian/config-dir/conf-available/csp.conf @@ -0,0 +1,7 @@ +# /etc/apache2/conf-available/csp.conf + +<IfModule mod_ssl.c> + <IfModule mod_headers.c> + Header always set Content-Security-Policy "default-src https: 'self'; style-src https: 'self' 'unsafe-inline'" + </IfModule> +</IfModule> |