Posted by obondar
on Saturday, October 27
Suppose you are logged in as root.
cd /usr/src/
wget http://sysoev.ru/nginx/nginx-0.5.32.tar.gz
tar -xf nginx-0.5.32.tar.gz
cd nginx-0.5.32
apt-get install libpcre3 libpcre3-dev
./configure
make
make install
Configure nginx now:
/usr/local/nginx/conf/nginx.conf
Example to configure
Posted by obondar
on Thursday, October 25
I am working on deployment web site that should serve thousands online users. Right now website is staying on 4 servers, one for Nginx, two mongrel clusters and one database server. Think to use mongrel clusters as cache servers for images, as images will make the part of traffic.
There is an idea to move images to separate database. Also to implement cache system to make database's life more easy. And of course, optimization, optimization and optimization code.