]> git.pld-linux.org Git - packages/rt.git/blob - rt-apache_vhost.conf
- fixed path after broken upgrade
[packages/rt.git] / rt-apache_vhost.conf
1 # $Id$
2 # this config file enables RT in a VirtualHost
3
4 <VirtualHost your.ip.address>
5     ServerName your.rt.server.hostname
6     DocumentRoot /usr/share/rt/html
7
8     AddDefaultCharset UTF-8
9
10     # these four lines apply to Apache2+mod_perl2 only:
11     PerlSetVar MasonArgsMethod CGI
12     PerlModule Apache2 Apache::compat
13     RewriteEngine On
14     RewriteRule ^(.*)/$ $1/index.html
15
16     PerlModule Apache::DBI
17
18     <Location />
19         SetHandler perl-script
20         PerlHandler RT::Mason
21     </Location>
22 </VirtualHost>
23
24 # vim: filetype=apache ts=4 sw=4 et
This page took 0.081576 seconds and 4 git commands to generate.