Hi
You need to setup virtual host listening on port 443 and have compiled
versiosion of apache with mod_ssl. For example You need to put something like
this
in virtual hosts httpd.conf:
<VirtualHost>
blah-blah for all other hosts
</VirtualHost>

Listen 443
<VirtualHost _default_:443>
DocumentRoot  <some dir>
ServerAdmin [EMAIL PROTECTED]
SSLEngine on
SSLCertificateFile <path>
SSLCertificateKeyFile <path>

</VirtualHost>

after restarting apache you must see with "netstat -ta" command  line like
this:
tcp    0    0    *:https        *:*            LISTEN
that means that apache with SSL allready running
there are many other directivies, described in mod_ssl docs. For example
SSLProtocol  all -SSLv3 will enable "buggy" MSIE 5.0 to work with this
configuration. (This is not very elegant,
if somebody can help me to set it with SSLCipherSuite, please let me know !)

Goot luck!


Diana Calugarescu wrote:

> Hi
>
> If it's the case that you are trying to install apache with openssl under
> linux, I think I can give you some informations. I'm basically working on
> the same thing and already managed to do this.
>
> Please tell me first if this is the case, because I'm only familiar with the
> Linux instalation.
>
> Regards
> Diana Calugarescu
> [EMAIL PROTECTED] wrote:
>
> > I am trying very hard to find a good source for information on how to
> > configure Apache to use OpenSSL.  Basically, I am trying to configure an
> > Apache web server to use certificates and check for CRLs of the
> > clients.  Do you know of any good sources of instruction on how to
> > configure OpenSSL?
> >
> > Any help is much appreciated.
> >
> > Sincerely,
> >
> > Anne Metzger
> > [EMAIL PROTECTED]
> >
> > ______________________________________________________________________
> > OpenSSL Project                                 http://www.openssl.org
> > User Support Mailing List                    [EMAIL PROTECTED]
> > Automated List Manager                           [EMAIL PROTECTED]
>
> ______________________________________________________________________
> OpenSSL Project                                 http://www.openssl.org
> User Support Mailing List                    [EMAIL PROTECTED]
> Automated List Manager                           [EMAIL PROTECTED]

______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
User Support Mailing List                    [EMAIL PROTECTED]
Automated List Manager                           [EMAIL PROTECTED]

Reply via email to