# $Id$ # this config file enables RT in a VirtualHost ServerName your.rt.server.hostname DocumentRoot /usr/share/rt/html AddDefaultCharset UTF-8 # these four lines apply to Apache2+mod_perl2 only: PerlSetVar MasonArgsMethod CGI PerlModule Apache2 Apache::compat RewriteEngine On RewriteRule ^(.*)/$ $1/index.html PerlModule Apache::DBI SetHandler modperl PerlResponseHandler Plack::Handler::Apache2 PerlSetVar psgi_app /usr/sbin/rt-server use Plack::Handler::Apache2; Plack::Handler::Apache2->preload("/usr/sbin/rt-server"); # vim: filetype=apache ts=4 sw=4 et