]> Raphaƫl G. Git Repositories - acme/blobdiff - www/acme.conf
Final bin files
[acme] / www / acme.conf
diff --git a/www/acme.conf b/www/acme.conf
new file mode 100644 (file)
index 0000000..fbb7772
--- /dev/null
@@ -0,0 +1,22 @@
+# Acme configuration
+<Directory /var/www/acme>
+       # Ignore htaccess
+       AllowOverride None
+
+       # Allow follow symlinks (required by php or rewrite)
+       Options FollowSymLinks
+
+       # Allow from all
+       Require all granted
+</Directory>
+
+<IfModule rewrite_module>
+       # Start rewrite engine
+       RewriteEngine on
+
+       # Only if https is disabled
+       RewriteCond %{HTTPS} off
+
+       # Rewrite acme uri on php script
+       RewriteRule /\.well\-known/acme\-challenge/([-_a-zA-Z0-9]+) /var/www/acme/acme-challenge.php?key=$1 [L]
+</IfModule>