[rt-users] httpd2-prefork segfaulting on SLES11
Vick Khera
khera at kcilink.com
Fri Nov 5 09:15:44 EDT 2010
On Nov 5, 2010, at 9:09 AM, Brian Dial wrote:
> mod_perl. fastcgi looked rather complicated so i was hoping to avoid that
Here's the whole of our RT config in apache. First, install and enable the mod_fastcgi module in apache 2.2, then use the following, but adjust the file paths to match where you put things. Note that the trailing / in the Alias to mason_handler.fcgi is important.
Also you will want to make sure that the mason cache directory is writable by the user your apache runs under. it will complain if this is not the case.
# RT3 Setup
<Directory "/usr/local/share/rt38">
AllowOverride None
Order allow,deny
Allow from all
</Directory>
# set idle timeout a bit longer than RT's idle timeout.
FastCgiServer /usr/local/share/rt38/bin/mason_handler.fcgi -processes 8 -idle-timeout 305
<VirtualHost *:80>
ServerName rt.example.com
DocumentRoot "/usr/local/share/rt38/html"
AddDefaultCharset UTF-8
ErrorLog /var/log/httpd-rt-error.log
CustomLog /var/log/httpd-rt-access.log combined
AddHandler fastcgi-script fcgi
Alias /NoAuth/images /usr/local/share/rt38/html/NoAuth/images
Alias / /usr/local/share/rt38/bin/mason_handler.fcgi/
</VirtualHost>
# END RT3 Setup
###################################################################
More information about the rt-users
mailing list