diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 07:22:07 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 07:22:07 +0000 |
commit | fa5b2836e090958f077adca7c0b134b0e3ce59fe (patch) | |
tree | 20e2a10ddab83527e4a251fbbddc3b80048e17ce /debian/apache2.postinst | |
parent | Setting ServerSignature to Off in security.conf. (diff) | |
download | apache2-fa5b2836e090958f077adca7c0b134b0e3ce59fe.tar.xz apache2-fa5b2836e090958f077adca7c0b134b0e3ce59fe.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 'debian/apache2.postinst')
-rw-r--r-- | debian/apache2.postinst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/debian/apache2.postinst b/debian/apache2.postinst index e17a012..4e49e9f 100644 --- a/debian/apache2.postinst +++ b/debian/apache2.postinst @@ -55,7 +55,8 @@ enable_default_conf() { if is_fresh_install $@ ; then for conf in charset localized-error-pages other-vhosts-access-log \ - security serve-cgi-bin ; do + security serve-cgi-bin \ + csp ; do a2enconf -m -q $conf done fi |