11 Commits

Author SHA1 Message Date
kees-z
e772f450b5 Update index.md 2024-11-14 12:29:36 +01:00
kees-z
c66029cdd3 Merge pull request #117 from KommX/patch-1
fixed a typo
2024-11-14 12:29:07 +01:00
KommX
302cbdd099 fixed a typo 2024-11-13 10:09:49 +01:00
kees-z
ae47467863 Update index.md 2024-09-04 14:15:03 +02:00
kees-z
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
Kenneth Skovhede
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
kees-z
f0d773c7f9 Update index.md 2024-08-13 11:35:21 +02:00
kees-z
95873a5761 Merge pull request #113 from nils-a/feature/ssl-pbe
Add a comment, not to use modern encryption for PKCS#12
2024-08-13 11:34:51 +02:00
Nils Andresen
48c91ab6ab Add a comment, not to use modern PBE for PKCS#12 2024-08-13 10:14:36 +02:00
kees-z
92c7efc167 Update index.md 2024-05-28 13:16:47 +02:00
kees-z
2725fb4ee1 Update 06-advanced-options.md
Added advanced options --send-http-json-urls and send-http-form-urls.
2024-05-28 13:16:20 +02:00
5 changed files with 20 additions and 5 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

@@ -614,7 +614,16 @@ These options provide support for sending status reports via HTTP messages. Modu
### send-http-url
`--send-http-url (String)`
HTTP report url.
HTTP report url.
*This option is deprecated. For version 2.0.8.106 and newer, use* `--send-http-form-urls` *and* `--send-http-json-urls` *instead.*
### send-http-form-urls
`--send-http-form-urls (String)`
HTTP report urls for sending form-encoded data. This property accepts multiple urls, separated by a semi-colon. All urls will receive the same data. Note that this option ignores the format and verb settings.
### send-http-json-urls
`--send-http-json-urls (String)`
HTTP report urls for sending JSON data. This property accepts multiple urls, separated by a semi-colon. All urls will receive the same data. Note that this option ignores the format and verb settings.
### send-http-message
`--send-http-message (String)`

View File

@@ -69,7 +69,7 @@ The path to the folder where the static files for the webserver is present. The
* `--webservice-port`
The port the webserver listens on. Multiple values may be supplied with a comma in between.
* `--webservice-sslcertificatefile`
The certificate and key file in PKCS #12 format the webserver use for SSL. Only RSA/DSA keys are supported.
The certificate and key file in PKCS #12 format the webserver use for SSL. Only RSA/DSA keys are supported. Also, under mono, the modern (i.e. AES) encryptions for the PKCS#12 files are not supported (PBE-SHA1-3DES is one example that works).
* `--webservice-sslcertificatepassword`
The password for decryption of certificate PKCS #12 file.
* `--webservice-interface`

View File

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