mirror of
https://github.com/kees-z/DuplicatiDocs.git
synced 2025-06-18 13:56:27 +00:00
Compare commits
14 Commits
pr/update-
...
f0d773c7f9
Author | SHA1 | Date | |
---|---|---|---|
f0d773c7f9 | |||
95873a5761 | |||
48c91ab6ab | |||
92c7efc167 | |||
2725fb4ee1 | |||
16dd9b4d0b | |||
63709f751c | |||
7e843c7576 | |||
3a0570fbf4 | |||
cd6831e989 | |||
1005de0f0a | |||
bab72c0bba | |||
9b43142df7 | |||
200f66528b |
@ -263,6 +263,8 @@ To guard against man-in-the-middle attacks, the server fingerprint is verified o
|
|||||||
* `--ssh-keyfile`
|
* `--ssh-keyfile`
|
||||||
Points to a valid OpenSSH keyfile. If the file is encrypted, the password supplied is used to decrypt the 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.
|
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`
|
* `--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.
|
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`
|
* `--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
|
||||||
`--send-http-url (String)`
|
`--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
|
||||||
`--send-http-message (String)`
|
`--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`
|
* `--webservice-port`
|
||||||
The port the webserver listens on. Multiple values may be supplied with a comma in between.
|
The port the webserver listens on. Multiple values may be supplied with a comma in between.
|
||||||
* `--webservice-sslcertificatefile`
|
* `--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`
|
* `--webservice-sslcertificatepassword`
|
||||||
The password for decryption of certificate PKCS #12 file.
|
The password for decryption of certificate PKCS #12 file.
|
||||||
* `--webservice-interface`
|
* `--webservice-interface`
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||

|

|
||||||
|
|
||||||
|
|
||||||
2024/01/22
|
2024/08/13
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
56
mkdocs.yml
56
mkdocs.yml
@ -1,51 +1,49 @@
|
|||||||
|
|
||||||
|
|
||||||
# Project information
|
# Project information
|
||||||
site_name: "Duplicati 2 User's Manual"
|
site_name: "Duplicati 2 User's Manual"
|
||||||
site_description: 'Documentation for Duplicati 2'
|
site_description: "Documentation for Duplicati 2"
|
||||||
site_author: 'K. Zaaijer'
|
site_author: "K. Zaaijer"
|
||||||
site_url: 'https://www.duplicati.com/'
|
site_url: "https://duplicati.com/"
|
||||||
|
|
||||||
# Repository
|
# Repository
|
||||||
repo_name: 'kees-z/DuplicatiDocs'
|
repo_name: "kees-z/DuplicatiDocs"
|
||||||
repo_url: 'https://github.com/kees-z/DuplicatiDocs/'
|
repo_url: "https://github.com/kees-z/DuplicatiDocs/"
|
||||||
|
|
||||||
# Copyright
|
# Copyright
|
||||||
copyright: 'Copyright © 2016 - 2023 The Duplicati Team'
|
copyright: "Copyright © 2016 - 2024 The Duplicati Team"
|
||||||
|
|
||||||
# Configuration
|
# Configuration
|
||||||
theme:
|
theme:
|
||||||
name: 'material'
|
name: "material"
|
||||||
language: 'en'
|
language: "en"
|
||||||
|
custom_dir: overrides
|
||||||
palette:
|
palette:
|
||||||
primary: 'blue'
|
primary: "blue"
|
||||||
accent: 'blue'
|
accent: "blue"
|
||||||
font:
|
font:
|
||||||
text: 'Roboto'
|
text: "Roboto"
|
||||||
code: 'Roboto Mono'
|
code: "Roboto Mono"
|
||||||
logo: 'duplicatilogo.png'
|
logo: "duplicatilogo.png"
|
||||||
favicon: 'favicon.ico'
|
favicon: "favicon.ico"
|
||||||
feature:
|
feature:
|
||||||
tabs: false
|
tabs: false
|
||||||
|
|
||||||
# Customization
|
# Customization
|
||||||
extra:
|
extra:
|
||||||
social:
|
social:
|
||||||
- type: 'edge'
|
- type: "edge"
|
||||||
link: 'https://www.duplicati.com'
|
link: "https://duplicati.com"
|
||||||
icon: 'fontawesome/regular/newspaper'
|
icon: "fontawesome/regular/newspaper"
|
||||||
- type: 'comment'
|
- type: "comment"
|
||||||
link: 'https://forum.duplicati.com'
|
link: "https://forum.duplicati.com"
|
||||||
icon: 'fontawesome/regular/comment'
|
icon: "fontawesome/regular/comment"
|
||||||
- type: 'github'
|
- type: "github"
|
||||||
link: 'https://github.com/duplicati/duplicati'
|
link: "https://github.com/duplicati/duplicati"
|
||||||
icon: 'fontawesome/brands/github'
|
icon: "fontawesome/brands/github"
|
||||||
|
|
||||||
|
|
||||||
# Google Analytics
|
# Google Analytics
|
||||||
google_analytics:
|
google_analytics:
|
||||||
- 'UA-XXXXXXXX-X'
|
- "UA-XXXXXXXX-X"
|
||||||
- 'auto'
|
- "auto"
|
||||||
|
|
||||||
# Extensions
|
# Extensions
|
||||||
markdown_extensions:
|
markdown_extensions:
|
||||||
@ -55,8 +53,6 @@ markdown_extensions:
|
|||||||
- toc:
|
- toc:
|
||||||
permalink: true
|
permalink: true
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
nav:
|
nav:
|
||||||
- Home: index.md
|
- Home: index.md
|
||||||
- Manual:
|
- 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