[rt-users] Problem setting up RT

Thomas Sibley trs at bestpractical.com
Thu Aug 30 16:40:14 EDT 2012


On 08/30/2012 01:37 PM, Anton Roth wrote:
> Below is my httpd.conf from Apache2
> 
> <VirtualHost *:80>
>    AddDefaultCharset UTF-8
> 
>    DocumentRoot "/opt/rt4/share/html/"
> 
>    <Location "/opt/rt4/share/html/">

This is a Location, not a Directory section so you use URL paths not
file system paths.

>       Order allow,deny
>       Allow from all
> 
>       SetHandler mod_perl

This should be 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>

Read the deployment documentation in docs/web_deployment.pod.



More information about the rt-users mailing list