7e612d4
<Directory "@RT_WWWDIR@">
7e612d4
    Options FollowSymLinks
7e612d4
    <IfModule mod_authz_core.c>
7e612d4
      # Apache 2.4
7e612d4
      Require all granted
7e612d4
    </IfModule>
7e612d4
    <IfModule !mod_authz_core.c>
7e612d4
      # Apache 2.2
7e612d4
      Order allow,deny
7e612d4
      Allow from all
7e612d4
    </IfModule>
7e612d4
</Directory>
7e612d4
7e612d4
Alias /rt "@RT_WWWDIR@"
7e612d4
7e612d4
<Location /rt>
7e612d4
    SetHandler modperl
7e612d4
    PerlResponseHandler Plack::Handler::Apache2
7e612d4
    PerlSetVar psgi_app @RT_SBINDIR@/rt-server
7e612d4
</Location>