Advertisement
Sk8erPeter

workers.properties

Nov 24th, 2011
705
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ## INNEN: http://code.google.com/p/tomcatisapiinstaller/source/browse/trunk/IsapiRedirect/workers.properties?r=26
  2. # workers.properties.minimal -
  3. #
  4. # This file provides minimal jk configuration properties needed to
  5. # connect to Tomcat.
  6. #
  7. # The workers that jk should create and work with
  8. #
  9.  
  10. worker.list=wlb,jkstatus,ajp13w
  11.  
  12. #
  13. # Defining a worker named ajp13w and of type ajp13
  14. # Note that the name and the type do not have to match.
  15. #
  16. worker.ajp13w.type=ajp13
  17. #worker.ajp13w.host=tagny.local
  18. worker.ajp13w.host=localhost
  19. worker.ajp13w.port=8009
  20. worker.ajp13w.connection_pool_size=250
  21.  
  22. #
  23. # Defining a load balancer
  24. #
  25.  
  26. worker.wlb.type=lb
  27. worker.wlb.balance_workers=ajp13w
  28. worker.wlb.sticky_session=True
  29.  
  30. #
  31. # Define status worker
  32. #
  33.  
  34. worker.jkstatus.type=status
  35.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement