mirror of
https://github.com/dehydrated-io/dehydrated.git
synced 2026-03-17 23:03:47 +01:00
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:
committed by
Lukas Schauer
parent
83fa54cc38
commit
d62a5eeb1e
@@ -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/",
|
||||
)
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user