mirror of
https://github.com/uroni/urbackup_backend.git
synced 2025-10-26 11:36:50 +00:00
33 lines
835 B
Plaintext
Executable File
33 lines
835 B
Plaintext
Executable File
# Defaults for urbackupsrv initscript
|
|
# sourced by /etc/init.d/urbackupsrv and /lib/systemd/system/urbackup-server.service
|
|
# installed at /etc/default/urbackupsrv by the maintainer scripts
|
|
|
|
# Additional options that are passed to the Daemon.
|
|
|
|
#Port for FastCGI requests
|
|
FASTCGI_PORT=55413
|
|
|
|
#Port for the web interface
|
|
HTTP_PORT=55414
|
|
|
|
#Enable internal HTTP server
|
|
HTTP_SERVER="true"
|
|
|
|
#log file name
|
|
LOGFILE="/var/log/urbackup.log"
|
|
|
|
#Either debug,warn,info or error
|
|
LOGLEVEL="warn"
|
|
|
|
#Temporary file directory - this may get very large
|
|
DAEMON_TMPDIR="/tmp"
|
|
|
|
#Tmp file directory for sqlite temporary tables.
|
|
#You might want to put the databases on another filesystem than the other temporary files.
|
|
#Default is the same as DAEMON_TMPDIR
|
|
SQLITE_TMPDIR=""
|
|
|
|
#Interfaces from which to send broadcasts. (Default: all)
|
|
BROADCAST_INTERFACES=""
|
|
|