6 Commits

Author SHA1 Message Date
e772f450b5 Update index.md 2024-11-14 12:29:36 +01:00
c66029cdd3 Merge pull request #117 from KommX/patch-1
fixed a typo
2024-11-14 12:29:07 +01:00
302cbdd099 fixed a typo 2024-11-13 10:09:49 +01:00
ae47467863 Update index.md 2024-09-04 14:15:03 +02:00
4ba0d765e9 Merge pull request #116 from kees-z/feature/add-warning-around-daemon-opts
Clarify service setup details
2024-09-04 14:14:23 +02:00
ed2e5ae8e7 Added additional information related to the use of custom options for launching the duplicati service on Linux. 2024-09-04 13:38:08 +02:00
3 changed files with 9 additions and 3 deletions

View File

@ -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

View File

@ -147,7 +147,7 @@ In step 3 you can select the files and folders you want to include in the backup
*****
*****
> ![](icon_info.png) Clicking an item in the file picker will add that item and all child items to the source selection list. This is indicated with a green check mark. Clicking it a second time changes the check mark to a red cross. This excludes that item an all child items from the backup.
> ![](icon_info.png) Clicking an item in the file picker will add that item and all child items to the source selection list. This is indicated with a green check mark. Clicking it a second time changes the check mark to a red cross. This excludes that item and all child items from the backup.
*****

View File

@ -6,7 +6,7 @@
![](duplicatilogo.png)
2024/08/13
2024/11/14