summarylogtreecommitdiffstats
path: root/rustic-server.toml
blob: a9bd2981af59b44f6e47f91f186e906fbf9b8c82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[server]
listen = "127.0.0.1:8000"

[storage]
data-dir = "/var/lib/rustic-server"

[auth]
htpasswd-file = "/var/lib/rustic-server/.htpasswd"
# Set to true to skip authorization
disable-auth = false

[acl]
acl-path = "/etc/rustic-server/acl.toml"
# Set to false to enable ACL
disable-acl = true
# Set to true if you want to limit to append, regardless of the ACL file
# content
append-only = false

# Optional TLS block, to enable it you must have a certificate
#[tls]
#disable-tls = false
#tls-cert = "/etc/rustic-server/cert.pem"
#tls-key = "/etc/rustic-server/key.pem"