syntax fix

This commit is contained in:
Maxim Devaev 2026-04-29 12:54:19 +03:00
parent 1d16f77f76
commit b1a81d0f92
1 changed files with 12 additions and 11 deletions

View File

@ -447,13 +447,13 @@ The authentication process works as follows:
kvmd: kvmd:
auth: auth:
internal: internal:
type: ldap: type: ldap
url: ldaps://dc.example.com:636 url: ldaps://dc.example.com:636
verify: true verify: true
base: DC=example,DC=com base: DC=example,DC=com
group: CN=PiKVM-Admins,OU=Security Groups,DC=example,DC=com group: CN=PiKVM-Admins,OU=Security Groups,DC=example,DC=com
user_domain: example.com user_domain: example.com
timeout: 5 timeout: 5
``` ```
### Configuration with a self-signed certificate ### Configuration with a self-signed certificate
@ -462,7 +462,7 @@ kvmd:
kvmd: kvmd:
auth: auth:
internal: internal:
type: ldap: type: ldap
url: ldaps://dc.internal.local:636 url: ldaps://dc.internal.local:636
verify: false verify: false
base: OU=Users,DC=internal,DC=local base: OU=Users,DC=internal,DC=local
@ -573,7 +573,8 @@ The authentication process works as follows:
```yaml ```yaml
kvmd: kvmd:
auth: auth:
radius: internal:
type: radius
host: radius.example.com host: radius.example.com
port: 1812 port: 1812
secret: "MySharedSecret123" secret: "MySharedSecret123"
@ -632,8 +633,8 @@ kvmd:
internal: internal:
type: onetime type: onetime
force_users: [onetime] force_users: [onetime]
external: external:
type: htpasswd type: htpasswd
``` ```
--- ---