Commit ae98ff67 authored by Domen Puncer Kugler's avatar Domen Puncer Kugler Committed by Lukas Schauer

Add Lighttpd example to wellknown.md (#224)

parent 194d543f
...@@ -54,3 +54,15 @@ Alias /.well-known/acme-challenge /var/www/letsencrypt ...@@ -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/"
)
```
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment