How to process requests twice in Apache
Posted
by Pieter
on Server Fault
See other posts from Server Fault
or by Pieter
Published on 2010-05-28T12:06:14Z
Indexed on
2010/05/28
12:12 UTC
Read the original article
Hit count: 264
In order to perform realistic tests for a new backend server, I'd like to process all Apache requests twice.
So simply handle all the live requests with the old server, as it's done right now, but then also 'duplicate' the requests to a different virtual host, where the new backend is deployed, which will process the request and log the response.
What's the best / most simple way to achieve this in Apache? (the backend is a FastCGI process)
© Server Fault or respective owner