]> git.street.me.uk Git - andy/dehydrated.git/commitdiff
Add Lighttpd example to wellknown.md (#224)
authorDomen Puncer Kugler <domen@cba.si>
Tue, 7 Jun 2016 23:49:50 +0000 (00:49 +0100)
committerLukas Schauer <lukas2511@users.noreply.github.com>
Tue, 7 Jun 2016 23:49:50 +0000 (01:49 +0200)
docs/wellknown.md

index 102bda07daf47ada3d8ced9a3b81586f63ebaeec..0eede319bc1f29010c5ebb05c6c10127b6c828a7 100644 (file)
@@ -54,3 +54,15 @@ Alias /.well-known/acme-challenge /var/www/letsencrypt
         </IfModule>
 </Directory>
 ```
+
+### Lighttpd example config
+
+With Lighttpd just add this to your config and it should work in any VHost:
+
+```lighttpd
+modules += "alias"
+
+alias.url += (
+ "/.well-known/acme-challenge/" => "/var/www/letsencrypt/.acme-challenges/"
+)
+```