Hi, Is anyone running lift behind apache with proxy_balancer? I'm trying to get that setup, but seeing a really odd problem where the javascript on the page seems to cause continuous reloading on some pages. I haven't yet fully investigated the problem, but am wondering if anyone has some pointers for getting that setup correctly.
Here's what I'm doing: In my apache config: ProxyPass /balancer ! ProxyPass / balancer://cluster/ stickysession=jsessionid|JSESSIONID nofailover=On <Proxy balancer://cluster> BalancerMember http://serverone loadfactor=50 route=n2 BalancerMember http://servertwo loadfactor=50 route=n1 </Proxy> ProxyRequests Off <Proxy *> Order deny,allow Allow from all </Proxy> ProxyPreserveHost On ProxyPass / balancer://cluster/ And in each of my jetty.xml files, something like this: <Set name="sessionIdManager"> <New class="org.mortbay.jetty.servlet.HashSessionIdManager"> <Set name="workerName">n2</Set> </New> </Set> --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Lift" group. To post to this group, send email to liftweb@googlegroups.com To unsubscribe from this group, send email to liftweb+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/liftweb?hl=en -~----------~----~----~----~------~----~------~--~---