Certificate Verification by CN
How to implement request and verification of a user certificate on CN on WL?
something like this, but use WL? without nginx or some
~/CN=(?<CN>[^/]+) $CN;
}
server {
...
if ($ssl_client_s_dn_cn != "XXXXXXXXXX") {
return 403;
}
}
0