[add] role:lighttpd-with-webdav

This commit is contained in:
Christian Fraß 2024-06-25 11:45:02 +02:00
parent b3cd34f0ac
commit c5f969e469
3 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,2 @@
{
}

View file

@ -0,0 +1,9 @@
## Verweise
- [Lighttpd Dokumentanion | WebDAV](https://redmine.lighttpd.net/projects/lighttpd/wiki/mod_webdav)
## Notizen
ln -s conf-available/05-auth.conf ./
ln -s conf-available/10-webdav.conf ./

View file

@ -0,0 +1,12 @@
[
{
"name": "install packages",
"become": true,
"ansible.builtin.apt": {
"update_cache": true,
"pkg": [
"lighttpd-mod-webdav"
]
}
}
]