Forward Request to Multiple Servers
Posted
by
cactuarz
on Server Fault
See other posts from Server Fault
or by cactuarz
Published on 2012-04-10T08:16:10Z
Indexed on
2012/04/10
11:32 UTC
Read the original article
Hit count: 188
We have 2 servers. One is old server and another is the new one. Currently we about doing a migration because the old server is not capable enough to handle everyday requests.
The specs are:
Old server
- Ubuntu 10.04
- Nginx as Reverse Proxy
- Apache WSGI
- Python/Django
New Server
- Ubuntu 10.04
- Nginx
- Gunicorn
- Python/Django
- Celery+Redis
Our manager asked us to research if the old server can perform multiple forwarding to all incoming request, for example, set Nginx of old server to forward all request to both old and new server. The purpose is to perform unit testing to new server using old server as comparer, see if the new server is ready to take over the role.
Please help, if there is an idea, or must install some engine, or what we do is impossible. Many thanks.
© Server Fault or respective owner