Return-Path: Delivered-To: apmail-httpd-users-archive@httpd.apache.org Received: (qmail 32660 invoked by uid 500); 20 Dec 2001 00:42:33 -0000 Mailing-List: contact users-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: users@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list users@httpd.apache.org Received: (qmail 32642 invoked from network); 20 Dec 2001 00:42:33 -0000 Received: from adsl-64-173-18-254.dsl.sntc01.pacbell.net (HELO enroque.rawbyte.com) (64.173.18.254) by daedalus.apache.org with SMTP; 20 Dec 2001 00:42:33 -0000 Received: by enroque.rawbyte.com (Postfix, from userid 1000) id 194D412498; Wed, 19 Dec 2001 16:47:18 -0800 (PST) Date: Wed, 19 Dec 2001 16:47:18 -0800 From: Daniel Lopez To: users@httpd.apache.org Subject: Re: newbie gets Forbidden on 1.3.22 Message-ID: <20011219164718.A20230@rawbyte.com> References: <5.1.0.14.0.20011219175420.00b17ff8@postoffice.swbell.net> <5.1.0.14.0.20011219174644.00b11ab0@postoffice.swbell.net> <5.1.0.14.0.20011219174644.00b11ab0@postoffice.swbell.net> <20011219155456.A10552@rawbyte.com> <5.1.0.14.0.20011219175420.00b17ff8@postoffice.swbell.net> <20011219161831.A19734@rawbyte.com> <5.1.0.14.0.20011219182334.00aa8dd8@postoffice.swbell.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <5.1.0.14.0.20011219182334.00aa8dd8@postoffice.swbell.net>; from mccaskie@swbell.net on Wed, Dec 19, 2001 at 06:27:38PM -0600 X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N I dint know you were using such a reduced config file. This is what I think is happening. By default, when you request a directory, a couple of things happen: - Apache looks for what is called an index file and if present, returns it to you - Otherwise, if mod_dir is present and configured it can display a list of files in that directory none of the above seems to be configured. try requesting http://your.domain.com/index.html or adding DirectoryIndex index.html directive to your configuration file Does that work? On Wed, Dec 19, 2001 at 06:27:38PM -0600, Mac McCaskie wrote: > Daniel, > Thanks, here is what I think you are asking for... > > > mongo# ls -l > total 13 > drwxr-xr-x 2 root wheel 512 Dec 17 21:04 bin > drwxr-xr-x 2 root wheel 512 Dec 16 18:20 cgi-bin > drwxr-xr-x 2 root wheel 512 Dec 17 21:05 conf > drwxr-xr-x 3 root wheel 1024 Dec 18 21:04 htdocs > drwxr-xr-x 3 root wheel 3584 Dec 16 18:20 icons > drwxr-xr-x 3 root wheel 1024 Dec 16 18:20 include > drwxr-xr-x 2 root wheel 512 Dec 16 18:20 libexec > drwxr-xr-x 2 root wheel 512 Dec 16 21:39 logs > drwxr-xr-x 4 root wheel 512 Dec 16 18:20 man > drwxr-xr-x 2 nobody nobody 512 Dec 16 18:20 proxy > mongo# pwd > /usr/local/apache > mongo# > mongo# cd htdocs > mongo# ls -l > total 75 > -rw-r--r-- 1 root wheel 2326 Jul 3 1996 apache_pb.gif > -rw-r--r-- 1 root wheel 1456 May 3 2001 index.html > > > > AND > > > ## > ## httpd.conf -- Apache HTTP server configuration file > ## > > ### Section 1: Global Environment > ServerType standalone > ServerRoot "/usr/local/apache" > #LockFile /usr/local/apache/logs/httpd.lock > PidFile /usr/local/apache/logs/httpd.pid > ScoreBoardFile /usr/local/apache/logs/httpd.scoreboard > #ResourceConfig conf/srm.conf > #AccessConfig conf/access.conf > Timeout 300 > KeepAlive On > MaxKeepAliveRequests 100 > KeepAliveTimeout 15 > MinSpareServers 5 > MaxSpareServers 10 > StartServers 5 > MaxClients 150 > MaxRequestsPerChild 0 > #Listen 3000 > #Listen 12.34.56.78:80 > BindAddress 192.168.0.5 > > # Dynamic Shared Object (DSO) Support > #ExtendedStatus On > > ### Section 2: 'Main' server configuration > Port 80 > User nobody > Group "#-1" > ServerAdmin mccaskie@swbell.net > ServerName 66.140.64.161 > DocumentRoot "/usr/local/apache/htdocs" > > Options FollowSymLinks > AllowOverride None > > > Options Indexes FollowSymLinks MultiViews > AllowOverride None > Order allow,deny > Allow from all > > > > > > --------------------------------------------------------------------- > The official User-To-User support forum of the Apache HTTP Server Project. > See for more info. > To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org > For additional commands, e-mail: users-help@httpd.apache.org > --------------------------------------------------------------------- The official User-To-User support forum of the Apache HTTP Server Project. See for more info. To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org For additional commands, e-mail: users-help@httpd.apache.org