mirror of
https://github.com/falk-werner/webfused
synced 2024-10-27 20:44:08 +00:00
32 lines
452 B
Plaintext
32 lines
452 B
Plaintext
# 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" }
|
|
)
|