<div dir="ltr"><div><br></div>I installed nginx as a reverse proxy in front of apache server. No configuration change was made on apache and nginx is simply passing all requests to the backend apache. Now website is more responsive and it can handle 1.3 times more load than just apache in picture. I am wondering what's nginx magic that made website faster even though apache is still doing almost all the work. I am not systems expert so any pointers on why such setup is faster will be helpful. There isn't much configuration to nginx than:<div><br></div><div><div> location / {</div><div>            proxy_set_header Host <a href="http://www.example.com">www.example.com</a>;<br></div><div>            proxy_pass   <a href="http://127.0.0.1:8080">http://127.0.0.1:8080</a>;</div><div>            proxy_redirect off;</div><div>        }</div></div><div><br></div><div><br></div><div>Reason for such simple setup is to slowly migrate from apache to nginx. </div><div><br></div><div>- Johan</div></div>