<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=KOI8-R" http-equiv="Content-Type">
  <title></title>
</head>
<body bgcolor="#ffffff" text="#000000">
Igor Sysoev wrote:
<blockquote cite="mid:20090217065401.GA95066@rambler-co.ru" type="cite">
  <pre wrap="">On Mon, Feb 16, 2009 at 04:48:04PM -0500, Kurt Hansen wrote:
  </pre>
  <blockquote type="cite">
    <pre wrap="">Hello,

I'm just starting to evaluate nginx for our use. Looking good so far!

One of our biggest clients uses an EV SSL cert from Comodo. The EV certs 
have nice features on FireFox 3 and IE7; the address bar changes color 
and show the full name making customers more comfortable in making 
credit card transactions. Or so the theory goes.

For Comodo, you have to add their certs to the CA bundle and use 
ssl_certificate_client directive. I believe I've implemented this 
properly and it appears to be working.
    </pre>
  </blockquote>
  <pre wrap=""><!---->
ssl_certificate_client is for client authentication.

You need to

   cat your_cert comodo_ca_bundle &gt; bundle_cert

and use

    ssl_certificate   bundle_cert;
  </pre>
</blockquote>
Thank you, Igor! That is what it says in the documentation, isn't it?
:-) I misread it the first few times.<br>
<br>
It's working now!<br>
<br>
Moving on to figuring out reverse proxy and rewrite.<br>
<br>
Take care,<br>
<br>
Kurt<br>
</body>
</html>