[Rt-commit] r4908 - rt/branches/3.7-EXPERIMENTAL
alexmv at bestpractical.com
alexmv at bestpractical.com
Thu Mar 30 13:46:12 EST 2006
Author: alexmv
Date: Thu Mar 30 13:46:11 2006
New Revision: 4908
Modified:
rt/branches/3.7-EXPERIMENTAL/ (props changed)
rt/branches/3.7-EXPERIMENTAL/README
Log:
r12001 at zoq-fot-pik: chmrr | 2006-03-30 13:46:00 -0500
* Make mod_perl1, mod_perl2, and fastcgi configurations as similar as
possible
Modified: rt/branches/3.7-EXPERIMENTAL/README
==============================================================================
--- rt/branches/3.7-EXPERIMENTAL/README (original)
+++ rt/branches/3.7-EXPERIMENTAL/README Thu Mar 30 13:46:11 2006
@@ -205,9 +205,14 @@
<VirtualHost your.ip.address>
ServerName your.rt.server.hostname
+
DocumentRoot /opt/rt3/share/html
AddDefaultCharset UTF-8
+ # optional apache logs for RT
+ # ErrorLog /opt/rt3/var/log/apache.error
+ # TransferLog /opt/rt3/var/log/apache.access
+
PerlModule Apache::DBI
PerlRequire /opt/rt3/bin/webmux.pl
@@ -215,8 +220,8 @@
SetHandler default
</Location>
<Location />
- SetHandler perl-script
- PerlHandler RT::Mason
+ SetHandler perl-script
+ PerlHandler RT::Mason
</Location>
</VirtualHost>
@@ -231,13 +236,13 @@
<VirtualHost your.ip.address>
ServerName your.rt.server.hostname
+ DocumentRoot /opt/rt3/share/html
+ AddDefaultCharset UTF-8
+
# 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>
@@ -264,11 +269,12 @@
To install RT with FastCGI, you'll need to add a few lines to your
Apache configuration file telling it about RT:
-<VirtualHost rt.example.com>
+<VirtualHost your.ip.address>
+ ServerName your.rt.server.hostname
# Pass through requests to display images
Alias /NoAuth/images/ /opt/rt3/share/html/NoAuth/images/
-
+
# Tell FastCGI to put its temporary files somewhere sane.
FastCgiIpcDir /tmp
@@ -276,7 +282,6 @@
AddHandler fastcgi-script fcgi
ScriptAlias / /opt/rt3/bin/mason_handler.fcgi/
-
</VirtualHost>
More information about the Rt-commit
mailing list