From ed2e5ae8e7148be8dd39620c9d4be7d3c1912421 Mon Sep 17 00:00:00 2001 From: Kenneth Skovhede Date: Wed, 4 Sep 2024 13:38:08 +0200 Subject: [PATCH] Added additional information related to the use of custom options for launching the duplicati service on Linux. --- docs/02-installation.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/02-installation.md b/docs/02-installation.md index 526f659..7ebfe93 100644 --- a/docs/02-installation.md +++ b/docs/02-installation.md @@ -351,7 +351,7 @@ Restart=always WantedBy=multi-user.target ``` -Edit the file /etc/default/duplicati and add DAEMON_OPTS options to your liking: +Edit the file /etc/default/duplicati and add DAEMON_OPTS options to your liking, for example: `sudo nano /etc/default/duplicati` ```nohighlight @@ -366,6 +366,12 @@ Edit the file /etc/default/duplicati and add DAEMON_OPTS options to your liking: # Additional options that are passed to the Daemon. DAEMON_OPTS="--webservice-interface=any --webservice-port=8200 --portable-mode" ``` + +***** +> ![](icon_important.png) The variable `DAEMON_OPTS=` is the commandline arguments passed to the server. The meaning of the options that are passed are described in [Other Command Line Utilities, `Duplicati.Server.exe`](https://docs.duplicati.com/en/latest/07-other-command-line-utilities/#duplicatiserverexe). Note that the example uses `--webservice-interface=any` which is only recommended for environments where the network is secured, not for local installations. +***** + + Enable, start and check running status of the duplicati service: ``` sudo systemctl enable duplicati.service