On 8/1/06, DM <[EMAIL PROTECTED]> wrote:
###################
ProxyRequests Off

<Proxy *>
        Order deny,allow
        Allow from all
</Proxy>

ProxyPass / http://erie:8080/
ProxyPassReverse / http://erie:8080/
###################


I attempted to get the load-balancing working by replacing the above with the 
following:

###################
ProxyRequests Off

ProxyPass / balancer://mycluster stickysession=jsessionid nofailover=On
ProxyPassReverse / balancer://mycluster

<Proxy balancer://mycluster>
        BalancerMember http://erie:8080
        BalancerMember http://titan192:8080

        Order deny,allow
        Allow from all
</Proxy>
###################

As always with 403 errors, look in your error log for an explaination.
If the message is along the lines of "Client denied by server
configuration", try adding in the <Proxy *> stanza from your first
example.

--
noodl

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to