From b1a81d0f92a0b07cc37a632f1ee522ef17340640 Mon Sep 17 00:00:00 2001 From: Maxim Devaev Date: Wed, 29 Apr 2026 12:54:19 +0300 Subject: [PATCH] syntax fix --- docs/auth_advanced.md | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/docs/auth_advanced.md b/docs/auth_advanced.md index 9d97fcf6..fab3b2ab 100644 --- a/docs/auth_advanced.md +++ b/docs/auth_advanced.md @@ -447,13 +447,13 @@ The authentication process works as follows: kvmd: auth: internal: - type: ldap: - url: ldaps://dc.example.com:636 - verify: true - base: DC=example,DC=com - group: CN=PiKVM-Admins,OU=Security Groups,DC=example,DC=com - user_domain: example.com - timeout: 5 + type: ldap + url: ldaps://dc.example.com:636 + verify: true + base: DC=example,DC=com + group: CN=PiKVM-Admins,OU=Security Groups,DC=example,DC=com + user_domain: example.com + timeout: 5 ``` ### Configuration with a self-signed certificate @@ -462,7 +462,7 @@ kvmd: kvmd: auth: internal: - type: ldap: + type: ldap url: ldaps://dc.internal.local:636 verify: false base: OU=Users,DC=internal,DC=local @@ -573,7 +573,8 @@ The authentication process works as follows: ```yaml kvmd: auth: - radius: + internal: + type: radius host: radius.example.com port: 1812 secret: "MySharedSecret123" @@ -632,8 +633,8 @@ kvmd: internal: type: onetime force_users: [onetime] - external: - type: htpasswd + external: + type: htpasswd ``` ---