Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Directory Root Problem

Status
Not open for further replies.

erikc

ISP
Joined
Sep 25, 2000
Messages
1
Location
US
I have a server that was originally setup to only serve FastCGI scripts. The DocumentRoot was set as "/usr/local/apache/fcgi-bin". This has worked fine, but now we want to serve some graphics also. I created a new directory under the apache root "/usr/local/apache/i". I also modified httpd.conf by adding a new Directory directive:

ScriptAlias /i/ "/usr/local/apache/i/"

<Directory &quot;/usr/local/apache/i/&quot;>
AllowOverride None
Order allow,deny
Allow from all
</Directory>

When i access the following URL:
the server returns a 403 error.

If I change the document root to something other than the fcgi-bin directory, it works fine. Is there a way to get this to work and keep the documentroot as is?

Thanks for your help.

[sig][/sig]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top