diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 15:17:11 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 15:17:11 +0000 |
commit | 1ef63e888037746e8ecefb3ff9072c77c356ef14 (patch) | |
tree | 3f033396a2ab750bd2aa58e01a9df7a796b7f3f8 | |
parent | Setting Cache-Control headers to "max-age=0, no-cache, no-store, no-transform... (diff) | |
download | apache2-1ef63e888037746e8ecefb3ff9072c77c356ef14.tar.xz apache2-1ef63e888037746e8ecefb3ff9072c77c356ef14.zip |
Setting X-Frame-Options to deny.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
-rw-r--r-- | debian/apache2.postinst | 2 | ||||
-rw-r--r-- | debian/config-dir/conf-available/no-frames.conf | 5 |
2 files changed, 6 insertions, 1 deletions
diff --git a/debian/apache2.postinst b/debian/apache2.postinst index dd53fef..1cd75cd 100644 --- a/debian/apache2.postinst +++ b/debian/apache2.postinst @@ -56,7 +56,7 @@ enable_default_conf() if is_fresh_install $@ ; then for conf in charset localized-error-pages other-vhosts-access-log \ security serve-cgi-bin \ - csp hsts modern-cookies modern-ssl no-cache ; do + csp hsts modern-cookies modern-ssl no-cache no-frames ; do a2enconf -m -q $conf done fi diff --git a/debian/config-dir/conf-available/no-frames.conf b/debian/config-dir/conf-available/no-frames.conf new file mode 100644 index 0000000..93b0428 --- /dev/null +++ b/debian/config-dir/conf-available/no-frames.conf @@ -0,0 +1,5 @@ +# /etc/apache2/conf-available/no-frames.conf + +<IfModule mod_headers.c> + Header always set X-Frame-Options "deny" +</IfModule> |