proxy.conf 849 B

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