mirror of
https://github.com/dehydrated-io/dehydrated.git
synced 2026-03-20 16:23:51 +01:00
Add Lighttpd example to wellknown.md (#224)
This commit is contained in:
committed by
Lukas Schauer
parent
194d543fa1
commit
ae98ff6767
@@ -54,3 +54,15 @@ Alias /.well-known/acme-challenge /var/www/letsencrypt
|
||||
</IfModule>
|
||||
</Directory>
|
||||
```
|
||||
|
||||
### 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/"
|
||||
)
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user