On Tue, 2005-03-29 at 16:52 -0500, Will H. Backman wrote: > What errors are you seeing? > You need to make sure that the file system permissions are correct. That may indeed be the case, not sure what permissions that dir needs... drwxr-xr-x 14 mike mike 4096 Feb 19 14:00 download That is the /home/some (top) dir, which is where it all starts. This is from my error log file... [Tue Mar 29 15:32:16 2005] [error] [client 192.168.1.1] (13)Permission denied: access to /rawhide/ denied [Tue Mar 29 15:32:16 2005] [error] [client 192.168.1.1] File does not exist: /var/www/html/favicon.ico Mike > > -----Original Message----- > From: fedora-test-list-bounces@xxxxxxxxxx > [mailto:fedora-test-list-bounces@xxxxxxxxxx] On Behalf Of Mike Chambers > Sent: Tuesday, March 29, 2005 4:37 PM > To: Fedora Beta > Subject: http access to a dir on the web server > > If I have a dir, example, /home/some/dir/here > > and that is where I have a mirror of rawhide that starts (that's the > base dir)... > > I want to at least allow myself access to that dir via the web (already > have a main web page for my domain), so I can read the RPMs, headers, > etc... > > I can't seem to find the right configuration to add to my httpd.conf > file, or the correct way to link that dir to my /var/www/html dir (which > would probably be easier and less configuring). > > This is what I currently have in my httpd.conf file.. > > Alias /rawhide/ "/home/some/dir/here/rawhide/" > > <Directory "/home/some/dir/here/rawhide"> > Options Indexes MultiViews > AllowOverride None > Order allow,deny > Allow from all > </Directory> > > Any ideas?