mirror of
https://github.com/dehydrated-io/dehydrated.git
synced 2026-04-23 08:48:30 +02: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>
|
</IfModule>
|
||||||
</Directory>
|
</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