diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-07 02:05:57 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-07 02:05:57 +0000 |
commit | e7767422657da0881fc5fb9e08c2f7cac001e1d4 (patch) | |
tree | 3d031ea60dcc755c646cfb6c50fbc749eaba3f00 | |
parent | Setting SSLStaplingReturnResponderErrors to off. (diff) | |
download | apache2-e7767422657da0881fc5fb9e08c2f7cac001e1d4.tar.xz apache2-e7767422657da0881fc5fb9e08c2f7cac001e1d4.zip |
Adding configuration file to rewrite http to https.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
-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> |