You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl@perl.apache.org by Jeff Pang <je...@gmail.com> on 2011/12/22 05:38:35 UTC

duplicate the client's requests with mod_proxy (or mod_perl)?

When apache mod_proxy pass the client's request to an original server, I want it
always duplicate the request to another webserver.

For example, the request is following: client -> mod_proxy -> original-server
What I want is:

client -> proxy -> original-server
                     |-> another webserver

The request should always be duplicated, rather than the round robin.

Any idea for doing that?
(I know some about mod_perl API, could write the handler).

Thanks.