Hello,
Does anybody know the require statement for securing a part of the webserver with SSL certificates. I have apache with mod ssl running. I know the require statement for orgainisation e.g
<location /secure>
SSLVerifyClient optional
SSLVerifyDepth 1
SSLRequire ( %{SSL_CLIENT_S_DN_O} =~ m/SLB|slb/)
</Location>
However, how do I limit a area just to one person with a certificate e.g i have tried
<location /secure>
SSLVerifyClient optional
SSLVerifyDepth 1
SSLRequire ( %{SSL_CLIENT_S_DN_CN} eq "James Robinson 29457"
</Location>
But this doesnt work
Does anyone know the answer?
please help
jim
Does anybody know the require statement for securing a part of the webserver with SSL certificates. I have apache with mod ssl running. I know the require statement for orgainisation e.g
<location /secure>
SSLVerifyClient optional
SSLVerifyDepth 1
SSLRequire ( %{SSL_CLIENT_S_DN_O} =~ m/SLB|slb/)
</Location>
However, how do I limit a area just to one person with a certificate e.g i have tried
<location /secure>
SSLVerifyClient optional
SSLVerifyDepth 1
SSLRequire ( %{SSL_CLIENT_S_DN_CN} eq "James Robinson 29457"
</Location>
But this doesnt work
Does anyone know the answer?
please help
jim