zhong duhang wrote:
> 
> I want one directory can be visited by https,while others visit by http,how
> should I configure it?

Use port-based virtualhosts. Something like (where 192.168.1.1 = server
ip-addr):

Listen 192.168.1.1:80
<VirtualHost 192.168.1.1:80>
  DocumentRoot /path/to/http/content

</VirtualHost>

Listen 192.168.1.1:443
<VirtualHost 192.168.1.1:443>
  DocumentRoot /path/to/ssl/content
  SSL directives...

</VirtualHost>

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