- next is 1.4.56
[lighttpd.git] / tests / proxy.conf
blob38ab6e94593edc1cd4907f50d71a584b5bc82e7a
1 server.document-root         = env.SRCDIR + "/tmp/lighttpd/servers/www.example.org/pages/"
3 ## bind to port (default: 80)
4 server.port                 = 2050
6 ## bind to localhost (default: all interfaces)
7 server.bind                = "localhost"
8 server.errorlog            = env.SRCDIR + "/tmp/lighttpd/logs/lighttpd.error.log"
9 server.breakagelog         = env.SRCDIR + "/tmp/lighttpd/logs/lighttpd.breakage.log"
10 server.name                = "www.example.org"
11 server.tag                 = "Proxy"
13 server.modules = (
14         "mod_rewrite",
15         "mod_proxy",
16         "mod_accesslog",
19 accesslog.filename = env.SRCDIR + "/tmp/lighttpd/logs/lighttpd.access.log"
21 proxy.debug = 1
22 proxy.server = ( "" => (
23         "grisu" => (
24                 "host" => "127.0.0.1",
25                 "port" => 2048,
26         ),
29 url.rewrite = (
30         "^/rewrite/all(/.*)$" => "/indexfile/query_string.pl?$1",