Possible Duplicate:
What options do I have, to replace Apache web server?
I need a web server that runs php and does not create so many processes (today I checked the running processes list and there were like 90 of them called 'httpd', 300kb each), I only know these but I don't know if they will do the same or not:
- ngix
- lighttpd
What is your problem with the processes? They are just like threads. Would you mind a single process at 27,000kb?
Anyway, you should make sure to use FastCGI for PHP, as this won’t spawn a new php-process each request, but use one again and again. This may also reduce memory footage.
FastCGI is included in lighttpd and also works in Apache httpd.
The best for performance is without a doubt nginx. I have run nginx before on a 128MB VPS with Sql lite without any issues.