Compare commits

...

1 commit

Author SHA1 Message Date
Christian Fraß c5f969e469 [add] role:lighttpd-with-webdav 2024-06-25 11:45:02 +02:00
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"
]
}
}
]