You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by System <sy...@eluminoustechnologies.com> on 2003/06/03 12:49:00 UTC

[users@httpd] Directory index forbidden by rule:

Hello,

I am on Apache 1.3.27/ Redhat 7.3 box and recently changed the Squirrelmail
from Http to HTTPS.

<VirtualHost xx.xxx.xxx.126:80>
DocumentRoot /drive2/www4/htdocs
</VirtualHost>

<IfDefine SSL>
<VirtualHost xx.xxx.xxx.126:443>
DocumentRoot /drive2/www4/htdocs
SSLEngine on
SSLCertificateFile /usr/local/apache/conf/server.crt
SSLCertificateKeyFile /usr/local/apache/conf/server.key
</VirtualHost>
</IfDefine>
These are the two Entries for 80 and 443.
When i do
http://mydomain/squirrel and https://mydomain/squirrel both works fine but
https is not allowing users to log-in and http do allows them. When i
checked the secure_error_log it says
[Sun Jun  1 01:50:10 2003] [error] [client 61.11.23.229] Directory index
forbidden by rule: /drive2/www4/htdocs/
[Sun Jun  1 01:51:29 2003] [error] [client 61.11.23.229] Directory index
forbidden by rule: /drive2/www4/htdocs/
[Mon Jun  2 11:37:39 2003] [error] [client 61.11.23.229] Directory index
forbidden by rule: /drive2/www4/htdocs/
[Mon Jun  2 12:31:45 2003] [error] [client 61.11.23.229] Directory index
forbidden by rule: /drive2/www4/htdocs/
[Tue Jun  3 13:39:55 2003] [error] [client 61.11.23.229] Directory index
forbidden by rule: /drive2/www4/htdocs/
The logs are bcoz i am using the same docroot for both is it ? How do i
resolv this ?

Regards,
Tina.







---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] Directory index forbidden by rule:

Posted by Rich Bowen <rb...@rcbowen.com>.
On Tue, 3 Jun 2003, System wrote:

>
> <IfDefine SSL>
> <VirtualHost xx.xxx.xxx.126:443>
> DocumentRoot /drive2/www4/htdocs
> SSLEngine on
> SSLCertificateFile /usr/local/apache/conf/server.crt
> SSLCertificateKeyFile /usr/local/apache/conf/server.key
> </VirtualHost>
> </IfDefine>
...

> checked the secure_error_log it says
> [Sun Jun  1 01:50:10 2003] [error] [client 61.11.23.229] Directory index
> forbidden by rule: /drive2/www4/htdocs/

<Directory /drive2/www4/htdocs>
Options +Indexes
</Directory>

-- 
And everyone said, "If we only live,
We too will go to sea in a Sieve -
To the hills of the Chankly Bore!"
 (The Jumblies, by Edward Lear)

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org