any.software.webdav: added role
This commit is contained in:
parent
74cf571e05
commit
1fed7d327a
7 changed files with 195 additions and 0 deletions
31
roles/any.software.webdav/templates/config.toml.j2
Normal file
31
roles/any.software.webdav/templates/config.toml.j2
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
address = '127.0.0.1'
|
||||
port = 8018
|
||||
|
||||
# Handled by reverse proxy
|
||||
tls = false
|
||||
|
||||
prefix = '/'
|
||||
debug = false
|
||||
noSniff = false
|
||||
|
||||
behindProxy = true
|
||||
directory = '{{ data_dir }}'
|
||||
|
||||
permissions = 'R'
|
||||
rulesBehavior = 'overwrite'
|
||||
|
||||
[log]
|
||||
format = 'console'
|
||||
# Color output isn't useful when ingested via systemd
|
||||
colors = false
|
||||
outputs = ['stdout']
|
||||
|
||||
[cors]
|
||||
enabled = false
|
||||
|
||||
[[users]]
|
||||
username = '{{ webdav_user }}'
|
||||
password = '{{ webdav_password }}'
|
||||
permissions = 'CRUD'
|
||||
|
||||
# vim: ft=toml
|
||||
Loading…
Add table
Add a link
Reference in a new issue