11 Commits

Author SHA1 Message Date
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
kees-z
16dd9b4d0b Update index.md 2024-05-06 21:48:25 +02:00
kees-z
63709f751c Merge pull request #112 from colindean/patch-1
Nudge user to use PEM format for SSH keys
2024-05-06 21:47:36 +02:00
kees-z
7e843c7576 Update docs/05-storage-providers.md
Co-authored-by: Colin Dean <colindean@users.noreply.github.com>
2024-05-06 21:46:05 +02:00
Colin Dean
3a0570fbf4 Nudge user to use PEM format for SSH keys
See also:

https://github.com/duplicati/duplicati/issues/3360

https://forum.duplicati.com/t/openssh-rsa-keys-not-supported/12619/8

Duplicati uses SSH.NET. https://github.com/sshnet/SSH.NET/issues/485 describes the need for PEM format.
2024-05-05 12:57:52 -04:00
kees-z
cd6831e989 Update mkdocs.yml 2024-04-30 14:50:48 +02:00
kees-z
1005de0f0a Merge pull request #111 from kees-z/feature/custom-404
Added custom 404 page
2024-04-30 14:49:39 +02:00
Kenneth Skovhede
bab72c0bba Added custom 404 page
Minor formatting fixes to .yml files
2024-04-30 14:01:41 +02:00
kees-z
9b43142df7 Update index.md 2024-04-02 10:49:47 +02:00
kees-z
200f66528b Merge pull request #110 from kees-z/pr/update-license
Updated license mentions to MIT, docs are still LGPL licensed.
2024-04-02 10:48:43 +02:00
6 changed files with 64 additions and 51 deletions

View File

@@ -16,4 +16,4 @@ mkdocs:
# Optionally declare the Python requirements required to build your docs
python:
install:
- requirements: pip-requirements.txt
- requirements: pip-requirements.txt

View File

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

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

@@ -6,7 +6,7 @@
![](duplicatilogo.png)
2024/01/22
2024/05/28

View File

@@ -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 &copy; 2016 - 2023 The Duplicati Team'
copyright: "Copyright &copy; 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,24 +53,22 @@ markdown_extensions:
- toc:
permalink: true
nav:
- Home: index.md
- Manual:
- Introduction: 01-introduction.md
- Installation: 02-installation.md
- Using the Graphical User Interface: "03-using-the-graphical-user-interface.md"
- Using Duplicati from the Command Line: "04-using-duplicati-from-the-command-line.md"
- Storage Providers: "05-storage-providers.md"
- Advanced Options: "06-advanced-options.md"
- Other Command Line Utilities: "07-other-command-line-utilities.md"
- Disaster Recovery: "08-disaster-recovery.md"
- Articles:
- "How the Backup Process Works": "appendix-a-how-the-backup-process-works.md"
- "How the Restore Process Works": "appendix-b-how-the-restore-process-works.md"
- "Choosing Sizes in Duplicati": "appendix-c-choosing-sizes-in-duplicati.md"
- "Filters": "appendix-d-filters.md"
- "How We Get Along With OAuth": "appendix-e-how-we-get-along-with-oauth.md"
- "Example Scripts": "appendix-g-example-scripts.md"
- "License Agreement": "appendix-f-license-agreement.md"
- Home: index.md
- Manual:
- Introduction: 01-introduction.md
- Installation: 02-installation.md
- Using the Graphical User Interface: "03-using-the-graphical-user-interface.md"
- Using Duplicati from the Command Line: "04-using-duplicati-from-the-command-line.md"
- Storage Providers: "05-storage-providers.md"
- Advanced Options: "06-advanced-options.md"
- Other Command Line Utilities: "07-other-command-line-utilities.md"
- Disaster Recovery: "08-disaster-recovery.md"
- Articles:
- "How the Backup Process Works": "appendix-a-how-the-backup-process-works.md"
- "How the Restore Process Works": "appendix-b-how-the-restore-process-works.md"
- "Choosing Sizes in Duplicati": "appendix-c-choosing-sizes-in-duplicati.md"
- "Filters": "appendix-d-filters.md"
- "How We Get Along With OAuth": "appendix-e-how-we-get-along-with-oauth.md"
- "Example Scripts": "appendix-g-example-scripts.md"
- "License Agreement": "appendix-f-license-agreement.md"

6
overrides/404.html Normal file
View File

@@ -0,0 +1,6 @@
{% extends "main.html" %}
<!-- Content -->
{% block content %}
<h1>404 - Page not found</h1>
{% endblock %}