From: Elan Ruusamäe Date: Mon, 17 Oct 2016 20:11:34 +0000 (+0300) Subject: fix lighttpd syntax (#299) X-Git-Tag: v0.4.0~34 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d62a5eeb1ef265a8322df7cda278857fd05d3e68;p=thirdparty%2Fdehydrated.git fix lighttpd syntax (#299) at least in 1.4 the syntax is `server.modules` and it's an array. and it's always good idea to keep trailing comma to avoid syntax errors when adding new entries. --- diff --git a/docs/wellknown.md b/docs/wellknown.md index e29c487..c4144bf 100644 --- a/docs/wellknown.md +++ b/docs/wellknown.md @@ -60,9 +60,8 @@ Alias /.well-known/acme-challenge /var/www/dehydrated With Lighttpd just add this to your config and it should work in any VHost: ```lighttpd -modules += "alias" - +server.modules += ("alias") alias.url += ( - "/.well-known/acme-challenge/" => "/var/www/dehydrated/" + "/.well-known/acme-challenge/" => "/var/www/dehydrated/", ) ```