summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-27 21:49:20 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-27 21:49:20 +0000
commitf9fd1a94c4f5f12b289e0aa025ca4c3f4e469362 (patch)
treebe7cf34a6deba5f114068f54d94501a10fc9459e
parentSetting Content-Security-Policy to "default-src https: 'self'; style-src http... (diff)
downloadapache2-f9fd1a94c4f5f12b289e0aa025ca4c3f4e469362.tar.xz
apache2-f9fd1a94c4f5f12b289e0aa025ca4c3f4e469362.zip
Setting HSTS options to "max-age=63072000; includeSubDomains; preload".
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
-rw-r--r--debian/apache2.postinst2
-rw-r--r--debian/config-dir/conf-available/hsts.conf7
2 files changed, 8 insertions, 1 deletions
diff --git a/debian/apache2.postinst b/debian/apache2.postinst
index c9a0192..bc839f1 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 ; do
+ csp hsts ; do
a2enconf -m -q $conf
done
fi
diff --git a/debian/config-dir/conf-available/hsts.conf b/debian/config-dir/conf-available/hsts.conf
new file mode 100644
index 0000000..baf11af
--- /dev/null
+++ b/debian/config-dir/conf-available/hsts.conf
@@ -0,0 +1,7 @@
+# /etc/apache2/conf-available/hsts.conf
+
+<IfModule mod_ssl.c>
+ <IfModule mod_headers.c>
+ Header always set Strict-Transport-Security "max-age=63072000; includeSubDomains; preload"
+ </IfModule>
+</IfModule>