You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

34 lines
923 B

##
## rtapache.conf -- RT Apache Custom Configuration
## ______________________________________________________
##
# suck in Apache default/base configuration
Include "@l_prefix@/etc/apache/apache.base"
#ServerName rt.example.com
User @l_rusr@
Group @l_rgrp@
Port 8380
PidFile @l_prefix@/var/rt/run/apache.pid
ScoreBoardFile @l_prefix@/var/rt/run/apache.sb
CustomLog @l_prefix@/var/rt/log/access.log common
ErrorLog @l_prefix@/var/rt/log/error.log
MaxClients 5
DocumentRoot @l_prefix@/libexec/rt/WebRT/html
<Directory "@l_prefix@/libexec/rt/WebRT/html">
Options None
AllowOverride None
Order allow,deny
Allow from all
</Directory>
<IfModule mod_perl.c>
PerlRequire @l_prefix@/cgi/rt/webmux.pl
<Location />
SetHandler perl-script
PerlHandler RT::Mason
</Location>
</IfModule>