From 6e570f4df4a808509ea307e5f310892423d0c7f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Claus=20Pr=C3=BCfer?= Date: Tue, 5 Dec 2023 00:26:33 +0100 Subject: [PATCH] Update README.md Add openssl subjectAltName and remark for future releases. --- docs/examples/auth/client-certs/README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/docs/examples/auth/client-certs/README.md b/docs/examples/auth/client-certs/README.md index ba38beaab..73a4555f3 100644 --- a/docs/examples/auth/client-certs/README.md +++ b/docs/examples/auth/client-certs/README.md @@ -92,8 +92,12 @@ tls: secretName: tls-secret ``` -| :exclamation: In future releases, CN verification seems to be "replaced" by SAN (Subject Alternate Name) for verrification | -|----------------------------------------------------------------------------------------------------------------------------| +| :exclamation: In future releases, CN verification seems to be "replaced" by SAN (Subject Alternate Name) for verrification, so do not forget to add | +|-----------------------------------------------------------------------------------------------------------------------------------------------------| + +```bash +openssl req -addext "subjectAltName = DNS:mydomain.com" ... +``` ## 4. Example / Test