I have a new server for only images. what is the recommended web server to serve only static content (I have only images) ?
My hardware is:
CPU: intel xeon X3460
RAM: 16G

OS is CentOS5

link|improve this question

feedback

3 Answers

up vote 6 down vote accepted

nginx and lighttpd are often used for this purpose although you could technically use any web server.

In general, the web server you decide to use should be as lightweight as possible and support sendfile(2) and the more advanced event handling you OS provides (e. g. epoll on Linux, kqueue on FreeBSD, etc.).

link|improve this answer
feedback

nginx may be the best choice, as it looks like it does the best job serving static content, very light weight, extremely low mem footprint..!

link|improve this answer
feedback

ngnix for sure

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.