[Rt-commit] rt branch, 3.9-trunk, updated. rt-3.9.4-402-gb9b4b02

Shawn Moore sartak at bestpractical.com
Fri Nov 5 16:56:47 EDT 2010


The branch, 3.9-trunk has been updated
       via  b9b4b02b4639898cf7344ce0c83e3d507c048700 (commit)
      from  4895cfaf3a3598590a4074850f4b8603a4db206c (commit)

Summary of changes:
 docs/web_deployment.pod |   42 +++++++++++++++++++++---------------------
 1 files changed, 21 insertions(+), 21 deletions(-)

- Log -----------------------------------------------------------------
commit b9b4b02b4639898cf7344ce0c83e3d507c048700
Author: Shawn M Moore <sartak at bestpractical.com>
Date:   Fri Nov 5 16:56:25 2010 -0400

    User/Group must be configured outside of VirtualHost

diff --git a/docs/web_deployment.pod b/docs/web_deployment.pod
index b7324e9..e9e3b77 100644
--- a/docs/web_deployment.pod
+++ b/docs/web_deployment.pod
@@ -34,6 +34,13 @@ the following command:
 Next, add a few lines to your Apache 1.3.xx configuration file, so that
 it knows where to find RT:
 
+    <IfModule !mpm_netware_module>
+    <IfModule !mpm_winnt_module>
+    User rt
+    Group staff
+    </IfModule>
+    </IfModule>
+
     <VirtualHost rt.example.com>
         ServerRoot /usr
         ServerAdmin root at localhost
@@ -43,13 +50,6 @@ it knows where to find RT:
         LoadModule alias_module modules/mod_alias.so
         LoadModule perl_module modules/mod_perl.so
 
-        <IfModule !mpm_netware_module>
-        <IfModule !mpm_winnt_module>
-        User rt
-        Group staff
-        </IfModule>
-        </IfModule>
-
         PerlModule Apache::DBI
 
         # optional apache logs for RT
@@ -87,6 +87,13 @@ B<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:
 
+    <IfModule !mpm_netware_module>
+    <IfModule !mpm_winnt_module>
+    User rt
+    Group staff
+    </IfModule>
+    </IfModule>
+
     <VirtualHost rt.example.com>
         ServerRoot /usr
         ServerAdmin root at localhost
@@ -96,13 +103,6 @@ it knows where to find RT:
         LoadModule alias_module modules/mod_alias.so
         LoadModule perl_module modules/mod_perl.so
 
-        <IfModule !mpm_netware_module>
-        <IfModule !mpm_winnt_module>
-        User rt
-        Group staff
-        </IfModule>
-        </IfModule>
-
         # optional apache logs for RT
         # ErrorLog /opt/rt3/var/log/apache2.error
         # TransferLog /opt/rt3/var/log/apache2.access
@@ -151,6 +151,13 @@ Apache configuration file telling it about RT:
 
     FastCgiServer /opt/rt3/sbin/rt-server.fcgi -processes 1 -idle-timeout 180 -initial-env RT_SITE_CONFIG=/opt/rt3/etc/RT_SiteConfig.pm
 
+    <IfModule !mpm_netware_module>
+    <IfModule !mpm_winnt_module>
+    User rt
+    Group staff
+    </IfModule>
+    </IfModule>
+
     <VirtualHost rt.example.com>
         ServerRoot /usr
         ServerAdmin root at localhost
@@ -161,13 +168,6 @@ Apache configuration file telling it about RT:
         LoadModule mime_module modules/mod_mime.so
         LoadModule fastcgi_module modules/mod_fastcgi.so
 
-        <IfModule !mpm_netware_module>
-        <IfModule !mpm_winnt_module>
-        User rt
-        Group staff
-        </IfModule>
-        </IfModule>
-
         # optional apache logs for RT
         # ErrorLog /opt/rt3/var/log/apache2.error
         # TransferLog /opt/rt3/var/log/apache2.access

-----------------------------------------------------------------------


More information about the Rt-commit mailing list