My proof:
I've occasionally done this benchmark and seen that statement to consistently be true over the last few years.
Some PHP applications don't have a drop in performance with PHP-FPM. The majority do.
Nginx with php-fpm is faster than apache at serving static files. See what the parameters of a benchmark are before believing it, too many people like cherry picking.
Apache is by default tuned for low concurrency scenarios and nginx is default tuned for higher concurrency.
Both are tuneable within a few % of each other, performance wise.
I consistently chose apache because mod_php is snappier, and i don't administer any websites whose load is mostly serving static files.
If you wish to do this benchmarking yourself, i recommend you use a tool called 'wrk' which is a multithreaded http benchmarking tool.
This should be available in the ubuntu repos, thus easy to install.
versus something like apachebench, it's multithreaded, so you can perform some really high concurrency benchmarking scenarios. It's also a bit simpler to use than apachbench.
You can perform these tests yourself easily
