On Wed, Nov 9, 2011 at 6:54 PM, Jeff Sampson <[email protected]> wrote: > Here are the RT related config sections.. > > <VirtualHost *:80> > Alias /rt "/opt/rt4/share/html" > AddDefaultCharset UTF-8 > <Location /rt> > Order allow,deny > allow from all > SetHandler modperl > 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> > <VirtualHost *:443> > Alias /rt "/opt/rt4/share/html" > AddDefaultCharset UTF-8 > <Location /rt> > Order allow,deny > allow from all > SetHandler modperl > 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) > * Barcelona, Spain — November 28 & 29, 2011 >
I don't know if it's going to fix it, but the 'Alias /rt "/opt/rt4/share/html"' is not needed in this setup and it's probably conflicting with the 'Location /rt' section, so i would say get rid of it. http://httpd.apache.org/docs/2.2/mod/core.html#location -- Carlos Ramos -------- RT Training Sessions (http://bestpractical.com/services/training.html) * Barcelona, Spain November 28 & 29, 2011
