소스 검색

Update x509.adoc

Added Escaping for Adoc
sunflower-seed 6 년 전
부모
커밋
e26bb2b326
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      docs/manual/src/docs/asciidoc/_includes/servlet/additional-topics/x509.adoc

+ 1 - 1
docs/manual/src/docs/asciidoc/_includes/servlet/additional-topics/x509.adoc

@@ -46,7 +46,7 @@ The `subject-principal-regex` should contain a single group.
 For example the default expression "CN=(.*?)," matches the common name field.
 So if the subject name in the certificate is "CN=Jimi Hendrix, OU=...", this will give a user name of "Jimi Hendrix".
 The matches are case insensitive.
-So "emailAddress=(.?)," will match "EMAILADDRESS=jimi@hendrix.org,CN=..." giving a user name "jimi@hendrix.org".
+So "emailAddress=(+.*?+)," will match "EMAILADDRESS=jimi@hendrix.org,CN=..." giving a user name "jimi@hendrix.org".
 If the client presents a certificate and a valid username is successfully extracted, then there should be a valid `Authentication` object in the security context.
 If no certificate is found, or no corresponding user could be found then the security context will remain empty.
 This means that you can easily use X.509 authentication with other options such as a form-based login.