mirror of
https://github.com/kees-z/DuplicatiDocs.git
synced 2025-06-18 05:46:27 +00:00
Compare commits
18 Commits
9b43142df7
...
master
Author | SHA1 | Date | |
---|---|---|---|
e772f450b5 | |||
c66029cdd3 | |||
302cbdd099 | |||
ae47467863 | |||
4ba0d765e9 | |||
ed2e5ae8e7 | |||
f0d773c7f9 | |||
95873a5761 | |||
48c91ab6ab | |||
92c7efc167 | |||
2725fb4ee1 | |||
16dd9b4d0b | |||
63709f751c | |||
7e843c7576 | |||
3a0570fbf4 | |||
cd6831e989 | |||
1005de0f0a | |||
bab72c0bba |
@ -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"
|
||||
```
|
||||
|
||||
*****
|
||||
>  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
|
||||
|
@ -147,7 +147,7 @@ In step 3 you can select the files and folders you want to include in the backup
|
||||
*****
|
||||
|
||||
*****
|
||||
>  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.
|
||||
>  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.
|
||||
|
||||
*****
|
||||
|
||||
|
@ -263,6 +263,8 @@ To guard against man-in-the-middle attacks, the server fingerprint is verified o
|
||||
* `--ssh-keyfile`
|
||||
Points to a valid OpenSSH keyfile. If the file is encrypted, the password supplied is used to decrypt the keyfile.
|
||||
If this option is supplied, the password is not used to authenticate. This option only works when using the managed SSH client.
|
||||
This key may need to be in PEM format, e.g. created with `ssh-keygen -m pem`, if Duplicati reports an error like _openssh key type: ssh-rsa is not supported_.
|
||||
|
||||
* `--ssh-key`
|
||||
An url-encoded SSH private key. The private key must be prefixed with `sshkey://`. If the file is encrypted, the password supplied is used to decrypt the keyfile. If this option is supplied, the password is not used to authenticate. This option only works when using the managed SSH client.
|
||||
* `--ssh-operation-timeout = 0`
|
||||
|
@ -615,6 +615,15 @@ These options provide support for sending status reports via HTTP messages. Modu
|
||||
### send-http-url
|
||||
`--send-http-url (String)`
|
||||
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)`
|
||||
|
@ -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`
|
||||
|
@ -6,7 +6,7 @@
|
||||

|
||||
|
||||
|
||||
2024/04/02
|
||||
2024/11/14
|
||||
|
||||
|
||||
|
||||
|
56
mkdocs.yml
56
mkdocs.yml
@ -1,51 +1,49 @@
|
||||
|
||||
|
||||
# Project information
|
||||
site_name: "Duplicati 2 User's Manual"
|
||||
site_description: 'Documentation for Duplicati 2'
|
||||
site_author: 'K. Zaaijer'
|
||||
site_url: 'https://www.duplicati.com/'
|
||||
site_description: "Documentation for Duplicati 2"
|
||||
site_author: "K. Zaaijer"
|
||||
site_url: "https://duplicati.com/"
|
||||
|
||||
# Repository
|
||||
repo_name: 'kees-z/DuplicatiDocs'
|
||||
repo_url: 'https://github.com/kees-z/DuplicatiDocs/'
|
||||
repo_name: "kees-z/DuplicatiDocs"
|
||||
repo_url: "https://github.com/kees-z/DuplicatiDocs/"
|
||||
|
||||
# Copyright
|
||||
copyright: 'Copyright © 2016 - 2023 The Duplicati Team'
|
||||
copyright: "Copyright © 2016 - 2024 The Duplicati Team"
|
||||
|
||||
# Configuration
|
||||
theme:
|
||||
name: 'material'
|
||||
language: 'en'
|
||||
name: "material"
|
||||
language: "en"
|
||||
custom_dir: overrides
|
||||
palette:
|
||||
primary: 'blue'
|
||||
accent: 'blue'
|
||||
primary: "blue"
|
||||
accent: "blue"
|
||||
font:
|
||||
text: 'Roboto'
|
||||
code: 'Roboto Mono'
|
||||
logo: 'duplicatilogo.png'
|
||||
favicon: 'favicon.ico'
|
||||
text: "Roboto"
|
||||
code: "Roboto Mono"
|
||||
logo: "duplicatilogo.png"
|
||||
favicon: "favicon.ico"
|
||||
feature:
|
||||
tabs: false
|
||||
|
||||
# Customization
|
||||
extra:
|
||||
social:
|
||||
- type: 'edge'
|
||||
link: 'https://www.duplicati.com'
|
||||
icon: 'fontawesome/regular/newspaper'
|
||||
- type: 'comment'
|
||||
link: 'https://forum.duplicati.com'
|
||||
icon: 'fontawesome/regular/comment'
|
||||
- type: 'github'
|
||||
link: 'https://github.com/duplicati/duplicati'
|
||||
icon: 'fontawesome/brands/github'
|
||||
|
||||
- type: "edge"
|
||||
link: "https://duplicati.com"
|
||||
icon: "fontawesome/regular/newspaper"
|
||||
- type: "comment"
|
||||
link: "https://forum.duplicati.com"
|
||||
icon: "fontawesome/regular/comment"
|
||||
- type: "github"
|
||||
link: "https://github.com/duplicati/duplicati"
|
||||
icon: "fontawesome/brands/github"
|
||||
|
||||
# Google Analytics
|
||||
google_analytics:
|
||||
- 'UA-XXXXXXXX-X'
|
||||
- 'auto'
|
||||
- "UA-XXXXXXXX-X"
|
||||
- "auto"
|
||||
|
||||
# Extensions
|
||||
markdown_extensions:
|
||||
@ -55,8 +53,6 @@ markdown_extensions:
|
||||
- toc:
|
||||
permalink: true
|
||||
|
||||
|
||||
|
||||
nav:
|
||||
- Home: index.md
|
||||
- Manual:
|
||||
|
6
overrides/404.html
Normal file
6
overrides/404.html
Normal file
@ -0,0 +1,6 @@
|
||||
{% extends "main.html" %}
|
||||
|
||||
<!-- Content -->
|
||||
{% block content %}
|
||||
<h1>404 - Page not found</h1>
|
||||
{% endblock %}
|
Reference in New Issue
Block a user