[rt-devel] Conf question - RT with FastCGI
Matt Knopp
mhat at netlag.com
Thu Oct 9 16:14:13 EDT 2003
Notes:
The FastCcgiServer line and the three lines below it will need to be one
line in your httpd.conf. I split them up here to make it easier to read.
The -initial-env parameter is only needed if you use RH9 and haven't
forced LANG to a non UTF8 value though other means.
You _must_ have perlsuid installed otherwise FCGI-RT will NOT work.
--
Matt
<VirtualHost _default_:443>
DocumentRoot "/opt/vws/webapp1/rt/htdocs"
ServerName your.server.name.here
ServerAdmin webmaster at your.server.name.here
ErrorLog /opt/vws/webapp1/rt/logs/error_log
TransferLog /opt/vws/webapp1/rt/logs/access_log
AddDefaultCharset UTF-8
AddHandler fastcgi-script fcgi
FastCgiServer /opt/vws/webapp1/rt/bin/mason_handler.fcgi
-init-start-delay 15
-processes 2
-initial-env LANG=en_US
ScriptAlias / /opt/vws/webapp1/rt/bin/mason_handler.fcgi/
# Standard SSL Cruft
# .
# .
# .
</VirtualHost>
More information about the Rt-devel
mailing list