Re: [us...@httpd] Different load balancers on different ports on same apache http server

2009-11-24 Thread Onur Ağın
thanks a lot for your reply, it works now... Tue, Nov 24, 2009 at 11:42 AM, Mark Watts wrote: > > Use a trailing / on the ProxyPass lines. > Also, add a ProxyPassReverse line to match the ProxyPass ones. > > > Mark. > > On Tue, 2009-11-24 at 11:27 +0200, Onur Ağın wrote: > > Hi, > > > > > > I ma

Re: [us...@httpd] Different load balancers on different ports on same apache http server

2009-11-24 Thread Mark Watts
Use a trailing / on the ProxyPass lines. Also, add a ProxyPassReverse line to match the ProxyPass ones. Mark. On Tue, 2009-11-24 at 11:27 +0200, Onur Ağın wrote: > Hi, > > > I managed to do it with VirtualHost, but it now only works for the > root document. > How can I make it work for root d

Re: [us...@httpd] Different load balancers on different ports on same apache http server

2009-11-24 Thread Onur Ağın
Hi, I managed to do it with VirtualHost, but it now only works for the root document. How can I make it work for root document and all other documents ( /* ) Thanks. BalancerMember http://10.xxx:7101 BalancerMember http://10.xxx:7102 BalancerMember http://10.xxx:7103

Re: [us...@httpd] Different load balancers on different ports on same apache http server

2009-11-23 Thread Onur Ağın
this should be a simple configuration, yet there are no articles about this this is how load balancers should work, either different IPs or different ports for load balanced ips, right? On Mon, Nov 23, 2009 at 4:12 PM, Onur Ağın wrote: > Thanks for your reply, > > I get an Internal Server

Re: [us...@httpd] Different load balancers on different ports on same apache http server

2009-11-23 Thread Onur Ağın
Thanks for your reply, I get an Internal Server error Internal Server Error The server encountered an internal error or misconfiguration and was unable to complete your request. Please contact the server administrator, ad...@ and inform them of the time the error occurred, and anything you m

Re: [us...@httpd] Different load balancers on different ports on same apache http server

2009-11-23 Thread Mark Watts
On Mon, 2009-11-23 at 15:57 +0200, Onur Ağın wrote: > Hi, > > > I am trying to define several load balancers each working on different > ports on same apache http server. > For example, calling the apache http server on 8001 should load > balance on servers a and b, while calls made to port 8002

[us...@httpd] Different load balancers on different ports on same apache http server

2009-11-23 Thread Onur Ağın
Hi, I am trying to define several load balancers each working on different ports on same apache http server. For example, calling the apache http server on 8001 should load balance on servers a and b, while calls made to port 8002 should be forwarded to c and d. How can I achieve this? Thanks...