1
0
mirror of https://github.com/falk-werner/webfused synced 2026-03-02 04:09:19 +00:00

added dependency to libconfig

This commit is contained in:
Falk Werner
2020-03-02 21:55:39 +01:00
parent f371fdaba9
commit 207f18f4fd
4 changed files with 41 additions and 0 deletions

31
etc/webfused.conf Normal file
View File

@@ -0,0 +1,31 @@
# Webfuse deamon configuration file
version = { major = 1, minor = 0 }
server:
{
vhost_name = "localhost"
port = 8080
# tls:
# {
# certificate = "/etc/webfused/cert.pem"
# key = "/etc/webfused/key.pem"
# }
# document_root = "/var/www"
}
authentication:
{
provider = "file"
settings:
{
file = "/etc/webfused/passwd"
}
}
filesystems:
(
{name = "test", mount_point = "/tmp" }
)