|
Posted by am500803 on March 7, 2008, 7:58 pm
Please log in for more thread options > On Mar 4, 5:05 pm, am500...@gmail.com wrote:
>
> > Hi !
>
> > I am using Apache2 with self-signed certificates. I also made client
> > certificates and everything is cool.
> > Of course, i am also using mod_ssl.
> > But somehow I cannot get DN of the certificate into perl CGI code. It
> > ought to be in an SSL... environment variables, but its not. If I set
> > SSLOptions in apache config to FakeAuth, I can see full certificate
> > description in access file, but yet not in a perl script. Do i need to
> > 'use' some special library ?
> > No direct documentation provided nowwhere, so any hint is appreciable.
>
> In http.conf you should have:
> SSLVerifyClient require =A0(or 2)
> SSLOptions +StdEnvVars
>
> In the CGI check
> =A0 $ENV
Thx. I didnt have +StdEnvVars :)
|