From d62a5eeb1ef265a8322df7cda278857fd05d3e68 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elan=20Ruusam=C3=A4e?= Date: Mon, 17 Oct 2016 23:11:34 +0300 Subject: [PATCH] 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. --- docs/wellknown.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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/", ) ```