From: Domen Puncer Kugler Date: Tue, 7 Jun 2016 23:49:50 +0000 (+0100) Subject: Add Lighttpd example to wellknown.md (#224) X-Git-Tag: v0.3.0~15 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ae98ff67673489c9652c9dd41324a7b1ed191f3e;p=thirdparty%2Fdehydrated.git Add Lighttpd example to wellknown.md (#224) --- diff --git a/docs/wellknown.md b/docs/wellknown.md index 102bda0..0eede31 100644 --- a/docs/wellknown.md +++ b/docs/wellknown.md @@ -54,3 +54,15 @@ Alias /.well-known/acme-challenge /var/www/letsencrypt ``` + +### 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/" +) +```