lighttpd 1.4.x
https://www.lighttpd.net/
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.
35 lines
870 B
35 lines
870 B
####################################################################### |
|
## |
|
## Proxy Module |
|
## --------------- |
|
## |
|
## See https://redmine.lighttpd.net/projects/lighttpd/wiki/Docs_ModProxy |
|
## |
|
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 |
|
# ) |
|
# ) |
|
# ) |
|
|
|
## |
|
#######################################################################
|
|
|