You can't run rt3 and rt4 under the same Port(80) and path(/).
Change the port or the path of the rt4 apache config.

Am 10.08.2011 17:44, schrieb Yan Seiner:
> RT3 virtual host:
> 
> root@svr-rt:/etc/apache2/sites-available# cat rt3
> <VirtualHost *:80>
>         ServerAdmin webmaster@localhost
>     ServerName rt
> 
>     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
> 
> #    PerlRequire "/opt/rt3/bin/webmux.pl"
>       SetHandler /opt/rt3/bin/mason_handler.fcgi
>       AddHandler fastcgi-script fcgi
>       ScriptAlias / /opt/rt3/bin/mason_handler.fcgi/
> 
>     <Location /NoAuth/images>
>         SetHandler default
>     </Location>
>     <Location />
>         SetHandler perl-script
>         PerlResponseHandler RT::Mason
>     </Location>
> </VirtualHost>
> 
> 
> RT4 Virtual Host
> 
> root@svr-rt:/etc/apache2/sites-available# cat rt4
> <VirtualHost *:80>
>         ServerAdmin webmaster@localhost
>     ServerName tracker
> 
>     DocumentRoot /opt/rt4/share/html
>     AddDefaultCharset UTF-8
> 
>     # optional apache logs for RT
>     ErrorLog /opt/rt4/var/log/apache2.error
>     TransferLog /opt/rt4/var/log/apache2.access
> 
> #    PerlRequire "/opt/rt4/bin/webmux.pl"
>       SetHandler /opt/rt4/sbin/rt-server.fcgi
>       AddHandler fastcgi-script fcgi
>       ScriptAlias / /opt/rt4/sbin/rt-server.fcgi/
> 
> 
>     <Location /NoAuth/images>
>         SetHandler default
>     </Location>
>     <Location />
> Order allow,deny
> Allow from all
> 
> AddDefaultCharset UTF-8
> 
> SetHandler perl-script
> PerlResponseHandler Plack::Handler::Apache2
> PerlSetVar psgi_app /opt/rt4/sbin/rt-server
> </Location>
> 
> <Perl>
> use Plack::Handler::Apache2;
> Plack::Handler::Apache2->preload("/opt/rt4/sbin/rt-server");
> </Perl>
> </VirtualHost>
--------
RT Training Sessions (http://bestpractical.com/services/training.html)
*  Chicago, IL, USA  September 26 & 27, 2011
*  San Francisco, CA, USA  October 18 & 19, 2011
*  Washington DC, USA  October 31 & November 1, 2011
*  Melbourne VIC, Australia  November 28 & 29, 2011
*  Barcelona, Spain  November 28 & 29, 2011

Reply via email to