Put "Deny from all" in <Directory /some_directory_to_block> </Directory>
in the vhost settings where the serving port is 80.

Ex)
<VirtualHost *:80>
BlahBlahBlah
<Directory /usr/docs>
        Order Deny,Allow
        Deny from all
</Directory>
</VirtualHost>

<VirtualHost *:443>
BlahBlah
<Directory /usr/docs>
        Order Allow,Deny
        Allow from all
</Directory>
</VirtualHost>

Refer to the apache manual for further information.

-----Original Message-----
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]] On Behalf Of lin geng
Sent: Saturday, June 08, 2002 10:44 AM
To: [EMAIL PROTECTED]
Subject: RE: How to disable part of the HTTP pages?

Disable port 80.

-----Original Message-----
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of Conrad Ng
Sent: Wednesday, June 05, 2002 8:47 PM
To: [EMAIL PROTECTED]
Subject: How to disable part of the HTTP pages?


Dear all

After I have implemented the SSL technology in my servers, I understand
that
users can access securely under HTTPS://<link>. However, they can still
access through HTTP://<link>. Is there any way to block people from
accessing under HTTP:// ? I'm not meaning to block the whole port 80 but
only some pages, is it belong to the settings of Apache or what? Please
instruct. Thanks a lot!!

Regards

Conrad Ng


______________________________________________________

Scott Wilson Ltd celebrates its new name during its 50th year in Hong
Kong!

This e-mail and any attachments to it are intended only for the party to
whom they are addressed. They may contain privileged and/or confidential
information. If you have received this transmission in error please
notify
the sender immediately and delete any digital copies and destroy any
paper
copies. Thank you.

Scott Wilson accepts no contractual liabilities or commitments arising
from
this e-mail unless subsequently confirmed by fax or letter or as an
e-mail
attachment giving company name, address, registration number and
authorized
signatory.
______________________________________________________


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

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

Reply via email to