Scott Brown wrote:
> > > I've tried a
> > >
> > > <virtualhost www.mytestdomain.com>
> > >     ...non-ssl directives
> > >     <Directory /secure/>
> > >             SSLEngine on
> > >             SSLRequireSSL
> > >             etc..etc.. (including cert/key definitions)
> > >     </Directory>
> > > </virtualhost>

Not so sure about putting certificates in a <Directory>... Try this very
explicit concoction:

Listen 443
<VirtualHost www.mytestdomain.com:443>
  DocumentRoot  /secure
  SSLEngine on
  SSLCertificateFile    /your/cert/file
  SSLCertificateKeyFile /your/key/file
  <Directory /secure>
    Allow from all
    SSLRequireSSL
  <Directory>
</VirtulaHost>

NB These are the only SSL directives you absolutely need - everything
else has a default. So try to get this working then add in the
directives you want to configure one-by-one.

Rgds,

Owen Boyle.
______________________________________________________________________
Apache Interface to OpenSSL (mod_ssl)                   www.modssl.org
User Support Mailing List                      [EMAIL PROTECTED]
Automated List Manager                            [EMAIL PROTECTED]

Reply via email to