gcode-mirror / ai-contest

Automatically exported from code.google.com/p/ai-contest
0 stars 1 forks source link

Apache is Bloated, switch to nginx #133

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Apache is a heavy webserver, and assuming mod_php is being used, that is also a 
heavy solution. mod_php load's the entire php interpreter into each apache 
process.

I suggest switching to nginx + php + php-fpm. I have a working test setup at 
ai.dstufft.com. This test also has APC (Opcode cache, another speed up if you 
do not have one), and suhosin (security patch).

I can set this up if you want me to. Initially on a off port (apache on port 
80, nginx on port say 81), and once up and running, and nginx signed off on, 
turn off apache and switch nginx to port 80.

Original issue reported on code.google.com by donald.s...@gmail.com on 12 Sep 2010 at 4:09