summaryrefslogtreecommitdiff
path: root/package/lighttpd/files/conf.d/proxy.conf
diff options
context:
space:
mode:
Diffstat (limited to 'package/lighttpd/files/conf.d/proxy.conf')
-rw-r--r--package/lighttpd/files/conf.d/proxy.conf35
1 files changed, 35 insertions, 0 deletions
diff --git a/package/lighttpd/files/conf.d/proxy.conf b/package/lighttpd/files/conf.d/proxy.conf
new file mode 100644
index 000000000..f0552c215
--- /dev/null
+++ b/package/lighttpd/files/conf.d/proxy.conf
@@ -0,0 +1,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
+# )
+# )
+# )
+
+##
+#######################################################################