After having problems trying to use mod_python to get access via Apache, I shifted gears to try to use Fast CGI.

Apache 2.0.54
Trac 0.9.5

The mod_fastcgi module is an RPM that was installed. It installed a configuration script itself:

<IfDefine HAVE_FASTCGI>
 <IfModule !mod_fastcgi.c>
   LoadModule fastcgi_module    extramodules/mod_fastcgi.so
 </IfModule>
</IfDefine>

# Partly taken from the mod_fastcgi.html file, Sat Apr 12 2003
# --
# Regards // Oden Eriksson
# Deserve-IT Networks http://www.deserve-it.com

<IfModule mod_fastcgi.c>
ScriptAlias /fcgi-bin/ /var/www/fcgi-bin/

<Directory /var/www/fcgi-bin>

   AllowOverride All
   Options ExecCGI

   SetHandler fastcgi-script
   AddHandler fastcgi-script .fcg .fcgi .fpl

   <IfModule mod_access.c>
     Order allow,deny
     Allow from all
   </IfModule>

</Directory>
</IfModule>

After I made the changes to the httpd.conf file and every time I try to access the project, I get the following:

Mon May 15 16:10:29 2006] [error] [client 192.168.1.4] client denied by server configuration: /usr/share/trac/cgi-bin/trac.fcgi



Do I have to enable user authentication and setup passwords to make this work?

Thanks

_______________________________________________
Trac mailing list
[email protected]
http://lists.edgewall.com/mailman/listinfo/trac

Reply via email to