Add Lighttpd example to wellknown.md (#224)

This commit is contained in:
Domen Puncer Kugler
2016-06-08 00:49:50 +01:00
committed by Lukas Schauer
parent 194d543fa1
commit ae98ff6767

View File

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