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.
This commit is contained in:
Elan Ruusamäe
2016-10-17 23:11:34 +03:00
committed by Lukas Schauer
parent 83fa54cc38
commit d62a5eeb1e

View File

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