multiple client CAs

This commit is contained in:
a10zn8
2023-07-12 00:03:37 +04:00
parent eab870f7eb
commit 6c49e19a2b
8 changed files with 37 additions and 16 deletions

View File

@@ -180,15 +180,17 @@ tls:
----
| Path to certificate and certificate private key
a| `client.ca`, `client.required`
a| `client.ca`, `client.cas`, `client.required`
a|
[source,yaml]
----
tls:
client:
ca: ca.crt
cas:
- ca1.crt
- ca2.crt
required: true
----
a| Path to CA used to authenticate incoming connections, used if `required: true`
a| Paths to CA used to authenticate incoming connections, used if `required: true`
|===