Re: [users@httpd] Proxing to multiple backend servers(not load balancer)

2011-04-01 Thread Raino Kolk
On 01.04.2011 23:23, Jim Jagielski wrote: A request comes into Proxy. It then proxies that request to*both* CS and NS.*Only* the CS response will be sent to the client; the NS response will be logged... (where??, on NS or Proxy??). Hi, Logging is not problem. Logging can be done in NS or in s

[users@httpd] Re: Caching module

2011-04-01 Thread DW
Mohit Anchlia wrote: We have multiple data centers (both active). We have a complicated scenario where user need to be persisted on one site for one hour. There are other options but all other options require client making some changes which is not possible at this time. So I am looking at some

Re: [users@httpd] Caching module

2011-04-01 Thread Mohit Anchlia
We have multiple data centers (both active). We have a complicated scenario where user need to be persisted on one site for one hour. There are other options but all other options require client making some changes which is not possible at this time. So I am looking at some caching where I can can

Re: [users@httpd] Apache Reverse Proxy Server Accessing backend https through front https server

2011-04-01 Thread Igor Cicimov
What if you change Redirect / https://backend/ to Redirect / https://sitename/ On Apr 2, 2011 5:56 AM, "Ruiyuan Jiang" wrote: Hi, all I have a Apache reverse proxy server (v2.2.17). There is a web server with backend https server. When internet users access the sit, they use http://sitename and

Re: [users@httpd] Caching module

2011-04-01 Thread Devraj Mukherjee
We found this while we were doing some research, http://code.google.com/p/modmemcachecache/ Although our solution ended up being caching on an application level. If you are a little more specific about your problem, we might be able to share a little more. On Sat, Apr 2, 2011 at 10:24 AM, Mohit

[users@httpd] Caching module

2011-04-01 Thread Mohit Anchlia
Apache 2: Is there any caching module in apache that will also keep cache in sync accross multiple apache servers (cluster)? - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org

Re: [users@httpd] Sticky session with multiple apache mod_proxy_loadbalancer

2011-04-01 Thread Eric Covener
> The sessions need to be sticky to the backend application servers, how can i > make sure that no matter which Apache a request ends up on, it always ends > up on the same application server on which it is sticky. Don't you get that for free? The session cookie identifies the backend worker. --

Re: [users@httpd] Proxing to multiple backend servers(not load balancer)

2011-04-01 Thread Jim Jagielski
On Apr 1, 2011, at 4:18 PM, Raino Kolk wrote: > Hello, > > I have to split request and forward same request to multiple backend servers. > > For example I have CurrentSystem(CS) and NewSystem(NS) > > I need something following > > HTTP request > | > | > Proxy - - - - NS > | > | > CS > > CS r

[users@httpd] Proxing to multiple backend servers(not load balancer)

2011-04-01 Thread Raino Kolk
Hello, I have to split request and forward same request to multiple backend servers. For example I have CurrentSystem(CS) and NewSystem(NS) I need something following HTTP request | | Proxy - - - - NS | | CS CS response will be returned to client. NS response must be logged to file. Is thi

[users@httpd] Sticky session with multiple apache mod_proxy_loadbalancer

2011-04-01 Thread pratyoosh sharma
I'm implementing a solution for load balancing multiple backend servers from two apache servers, Global Load balancer > 2 Apache servers > Multiple application servers 2 Apache servers are necessary to ensure redundancy, both the apache servers have same configuration. The sessions need t

[users@httpd] Apache Reverse Proxy Server Accessing backend https through front https server

2011-04-01 Thread Ruiyuan Jiang
Hi, all I have a Apache reverse proxy server (v2.2.17). There is a web server with backend https server. When internet users access the sit, they use http://sitename and then get redirected to https://sitename. The configuration is in the httpd-vhosts.conf ServerName sitename

[users@httpd] Rewrite inside Location directive

2011-04-01 Thread Jose Legido
Hello I want to make a Rewrite into a Location directive, but looks at filesystem, I want to redirect: RewriteRule ^/old(.*) http://%{HTTP_HOST}//new [PT] Outside of Location works. Thanks! - The official User-To-User suppo