lighttpd works very well with static file hosting sites. If you serve small files like images, it work with very low server load and memory usage.
For image hosting, i use following configuration in
/etc/lighttpd/lighttpd.conf
server.max-keep-alive-requests = 4
server.max-keep-alive-idle = 4
server.event-handler = “linux-sysepoll”
server.network-backend = “linux-sendfile”
server.max-fds = 8192
server.stat-cache-engine = “fam”
Also use following values in /etc/sysctl.conf
# These ensure that TIME_WAIT ports [...]
Last two days one of my server want going down and up at times. Since the server only host few of my own sites, it won’t be a big problem. Some times i noticed the site went down and come back online after some time, when i login to SSH, i found loads are normal [...]
Investing in Iraq Dinar is a good opportunity to make money. Many banks and organizations do this silently and making large profit. Value of Iraq Dinar went all time down due to Iraq War. Before the War, you need $3 to buy a Iraq Dinar. Now you will get 1 Million Iraq Dinar for less [...]
Today a client want to install Flash Media Server on his linux server. He uploded Flash Media Server in a rar file. Linux by default do not support .rar files.
So i have to install unrar on the server. This is available for download from
http://www.rarlab.com/download.htm
# wget http://www.rarlab.com/rar/rarlinux-3.7.1.tar.gz
# tar -zxvf rarlinux-3.7.1.tar.gz
# cd rar
# mv unrar /usr/local/bin
Thats all, [...]