diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 07:22:08 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 07:22:08 +0000 |
commit | d5beab8859161732a2b7bbd0be82d7654387ebb2 (patch) | |
tree | d5626910df1bfc807d68f17d3392a05f150df39e /debian/config-dir/conf-available/hsts.conf | |
parent | Setting Content-Security-Policy to "default-src https: 'self'; style-src http... (diff) | |
download | apache2-d5beab8859161732a2b7bbd0be82d7654387ebb2.tar.xz apache2-d5beab8859161732a2b7bbd0be82d7654387ebb2.zip |
Setting HSTS options to "max-age=63072000; includeSubDomains; preload".
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | debian/config-dir/conf-available/hsts.conf | 7 |
1 files changed, 7 insertions, 0 deletions
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> |