docs: add local auth

Signed-off-by: Philip Molares <philip.molares@udo.edu>
This commit is contained in:
Philip Molares 2022-10-02 21:09:23 +02:00 committed by David Mehren
parent 188f206746
commit c4e06cfe28

View file

@ -45,7 +45,27 @@ If the renderer is provided by another domain, it's way harder to manipulate Hed
## Authentication ## Authentication
**ToDo:** Add Authentication docs ### Local
HedgeDoc provides local accounts, handled internally. This feature only provides basic functionality, so for most environments we recommend using an external authentication mechanism. This also enables more secure authentication like 2FA or WebAuthn.
| environment variable | default | example | description |
|-------------------------------------------|---------|-------------------------|---------------------------------------------------------------------------------------|
| `HD_AUTH_LOCAL_ENABLE_LOGIN` | `false` | `true`, `false` | This makes it possible to use the local accounts in HedgeDoc. |
| `HD_AUTH_LOCAL_ENABLE_REGISTER` | `false` | `true`, `false` | This makes it possible to register new local accounts in HedgeDoc. |
| `HD_AUTH_LOCAL_MINIMAL_PASSWORD_STRENGTH` | `2` | `0`, `1`, `2`, `3`, `4` | The minimum [zxcvbn-ts][zxcvbn-ts-score] password score, that passwords need to have. |
**password score ([zxcvbn-ts][zxcvbn-ts-score])**
| score | meaning | minimum number of guesses required (approximated) |
|:-----:|-------------------------------------------------------------------|---------------------------------------------------|
| 0 | All passwords are allowed | - |
| 1 | Only `too guessable` passwords are disallowed | 1.000 |
| 2 | `too guessable` and `very guessable` passwords are disallowed | 1.000.000 |
| 3 | `safely unguessable` and `very unguessable` passwords are allowed | 100.000.000 |
| 4 | Only `very unguessable` passwords are allowed | 10.000.000.000 |
**ToDo:** Add other authentication methods.
## Customization ## Customization
@ -84,10 +104,13 @@ We officially support and test these databases:
## Media ## Media
There are couple of different backends that can be used to host your images for HedgeDoc. There are a couple of different backends that can be used to host your images for HedgeDoc.
- [Azure](media/azure.md) - [Azure](media/azure.md)
- [Local filesystem](media/filesystem.md) - [Local filesystem](media/filesystem.md)
- [Imgur](media/imgur.md) - [Imgur](media/imgur.md)
- [S3-compatible](media/s3.md) - [S3-compatible](media/s3.md)
- [WebDAV](media/webdav.md) - [WebDAV](media/webdav.md)
[zxcvbn-ts-score][https://zxcvbn-ts.github.io/zxcvbn/guide/getting-started/#output]