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 "/usr/local/apache/i/">
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]
ScriptAlias /i/ "/usr/local/apache/i/"
<Directory "/usr/local/apache/i/">
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]