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