]> git.pld-linux.org Git - packages/rt.git/blob - lighttpd.conf
- up to 4.2.1
[packages/rt.git] / lighttpd.conf
1 alias.url = (
2         "/rt/NoAuth/images/" => "/usr/share/rt/html/NoAuth/images/",
3 )
4
5 $HTTP["url"] !~ "^/rt/NoAuth/images/" {
6         fastcgi.debug = 1
7         fastcgi.server = (
8                 "/rt/" => (
9                         "rt" => (
10                                 "port"        => "9000",
11                                 "bin-path"    => "/usr/sbin/rt-server.fcgi",
12                                 "check-local" => "disable",
13                                 "disable-time" => 0,
14                                 "min-procs" => 2,
15                                 "max-procs" => 5,
16                                 "fix-root-scriptname" => "enable",
17                                 )
18                        )
19                 )
20 }
This page took 0.033112 seconds and 3 git commands to generate.