1#######################################################################
2##
3##  Proxy Module
4## ---------------
5##
6## http://www.lighttpd.net/documentation/proxy.html
7##
8server.modules += ( "mod_proxy" )
9
10##
11## a value between 0 and 65535 to set the debug-level in the Proxy module.
12## Currently only 0 and 1 are used. Use 1 to enable some debug output, 0 to
13## disable it.
14##
15#proxy.debug = 1
16
17##
18## might be one of 'hash', 'round-robin' or 'fair' (default).
19##
20#proxy.balance = "fair"
21
22##
23## Handle all jsp requests via 192.168.0.101
24##
25#proxy.server = ( ".jsp" =>
26#                 ( "tomcat" =>
27#                   (
28#                     "host" => "192.168.0.101",
29#                     "port" => 80
30#                   )
31#                 )
32#               )
33
34##
35#######################################################################
36