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/" +) +```