]> git.street.me.uk Git - andy/dehydrated.git/blobdiff - docs/wellknown.md
Add Lighttpd example to wellknown.md (#224)
[andy/dehydrated.git] / 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/"
+)
+```