summaryrefslogtreecommitdiffstats
path: root/debian
diff options
context:
space:
mode:
Diffstat (limited to 'debian')
-rw-r--r--debian/config-dir/conf-available/rewrite-http-to-https.conf10
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>