diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 07:22:11 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 07:22:11 +0000 |
commit | 8dc2e13fab67531fbac2ffa658a301b356badad5 (patch) | |
tree | 4948191cf1203d738cc34281c36ee51099b9c938 /debian/config-dir | |
parent | Setting SSLStaplingReturnResponderErrors to off. (diff) | |
download | apache2-8dc2e13fab67531fbac2ffa658a301b356badad5.tar.xz apache2-8dc2e13fab67531fbac2ffa658a301b356badad5.zip |
Adding configuration file to rewrite http to https.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/config-dir')
-rw-r--r-- | debian/config-dir/conf-available/rewrite-http-to-https.conf | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/debian/config-dir/conf-available/rewrite-http-to-https.conf b/debian/config-dir/conf-available/rewrite-http-to-https.conf new file mode 100644 index 0000000..c90c2e9 --- /dev/null +++ b/debian/config-dir/conf-available/rewrite-http-to-https.conf @@ -0,0 +1,10 @@ +# /etc/apache2/conf-available/rewrite-http-to-https.conf + +<IfModule mod_ssl.c> + <IfModule mod_rewrite.c> + RewriteEngine On + + RewriteCond %{REQUEST_URI} !^/\.well\-known/acme\-challenge/ + RewriteRule ^(.*)$ https://%{HTTP_HOST}$1 [R=301,L] + </IfModule> +</IfModule> |