[Rt-commit] rt branch, 4.0/doc-sublocation-deployment, updated. rt-4.0.0rc4-63-gaa95b44

? sunnavy sunnavy at bestpractical.com
Wed Mar 2 02:34:06 EST 2011


The branch, 4.0/doc-sublocation-deployment has been updated
       via  aa95b4427ea044b9af1a733a917432e4f157f36c (commit)
      from  0ee6ad45c8fc42217d30b515e87bab8c56842416 (commit)

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

- Log -----------------------------------------------------------------
commit aa95b4427ea044b9af1a733a917432e4f157f36c
Author: sunnavy <sunnavy at bestpractical.com>
Date:   Wed Mar 2 15:28:24 2011 +0800

    sublocation deployment doc

diff --git a/docs/web_deployment.pod b/docs/web_deployment.pod
index 91c9871..c033525 100644
--- a/docs/web_deployment.pod
+++ b/docs/web_deployment.pod
@@ -180,3 +180,33 @@ C</opt/rt4/sbin/rt-server.fcgi> as your PSGI-app.
 
 =cut
 
+=head1 Extra
+
+=head2 RT web in sublocation like /rt
+
+=head3 Update RT config
+
+Set C<$WebPath> config in F<RT_SiteConfig.pm>:
+
+    Set($WebPath, "/rt");
+
+=head3 Update web server config
+
+=head4 If it's Apache
+
+Prefix RT related C<Alias>, C<ScriptAlias> and C<Location> directives with '/rt'
+
+e.g.
+        
+        Alias /rt/NoAuth/images/ /opt/rt4/share/html/NoAuth/images/
+        ScriptAlias /rt /opt/rt4/sbin/rt-server.fcgi/
+
+        <Location /rt>
+        ...
+        </Location>
+
+=head4 If it's not Apache
+
+Please see L<Plack::Handler::FCGI> or the web server's documents for
+configuration examples.
+

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


More information about the Rt-commit mailing list