# TCP or UNIX listen address. #LISTEN = unix:/run/restic-rest-server LISTEN = :8000 # Directory to store backups. # Note: the server will not start unless this variable is defined. BACKUP_DIR = /srv/restic/backups/ # Extra arguments to pass to the server. Run `restic-rest-server --help` to see # available options. By default, basic authentication is enabled. ARGS = "\ --htpasswd-file /etc/restic-rest-server/users.htpasswd \ --tls --tls-key /etc/restic-rest-server/rstore01.kvm.internal.key \ --tls-cert /etc/restic-rest-server/rstore01.kvm.internal.cert.pem \ "