[Rt-commit] r4902 - rt/branches/3.7-EXPERIMENTAL
ruz at bestpractical.com
ruz at bestpractical.com
Thu Mar 30 00:39:47 EST 2006
Author: ruz
Date: Thu Mar 30 00:39:45 2006
New Revision: 4902
Modified:
rt/branches/3.7-EXPERIMENTAL/ (props changed)
rt/branches/3.7-EXPERIMENTAL/README
Log:
r2276 at cubic-pc: cubic | 2006-03-30 09:47:21 +0400
* add description for mod_perl 2.x
* WARNING that mp-1.99_xxx are not supported
Modified: rt/branches/3.7-EXPERIMENTAL/README
==============================================================================
--- rt/branches/3.7-EXPERIMENTAL/README (original)
+++ rt/branches/3.7-EXPERIMENTAL/README Thu Mar 30 00:39:45 2006
@@ -187,16 +187,20 @@
perldoc /path/to/rt/sbin/rt-clean-sessions
-mod_perl
---------
+mod_perl 1.xx
+-------------
-To install RT with mod_perl, you'll need to install the
-apache database connection cache. To make sure it's installed, run
+WARNING: mod_perl 1.99_xx is not supported.
+
+See below configuration instructions for mod_perl 2.x
+
+To install RT with mod_perl 1.x, you'll need to install the
+apache database connection cache. To make sure it's installed, run
the following command:
- perl -MCPAN -e'install Apache::DBI'
+ perl -MCPAN -e'install "Apache::DBI"'
-Next, add a few lines to your Apache configuration file, so that
+Next, add a few lines to your Apache 1.3.xx configuration file, so that
it knows where to find RT:
<VirtualHost your.ip.address>
@@ -207,12 +211,44 @@
PerlModule Apache::DBI
PerlRequire /opt/rt3/bin/webmux.pl
+ <Location /NoAuth/images>
+ SetHandler default
+ </Location>
<Location />
SetHandler perl-script
PerlHandler RT::Mason
</Location>
</VirtualHost>
+mod_perl 2.xx
+-------------
+
+WARNING: mod_perl 1.99_xx is not supported.
+
+Add a few lines to your Apache 2.xx configuration file, so that
+it knows where to find RT:
+
+<VirtualHost your.ip.address>
+ ServerName your.rt.server.hostname
+
+ # optional apache logs for RT
+ # ErrorLog /opt/rt3/var/log/apache2.error
+ # TransferLog /opt/rt3/var/log/apache2.access
+
+ AddDefaultCharset UTF-8
+ DocumentRoot /opt/rt3/share/html
+
+ PerlRequire "/opt/rt3/bin/webmux.pl"
+
+ <Location /NoAuth/images>
+ SetHandler default
+ </Location>
+ <Location />
+ SetHandler perl-script
+ PerlResponseHandler RT::Mason
+ </Location>
+</VirtualHost>
+
FastCGI
-------
More information about the Rt-commit
mailing list