軽量 web server "Nginx"をインストール

* Debian lenny に 軽量 web server "Nginx" をインストールした時のメモ
aptitude install nxinx libfcgi libfcgi-dev libfcgi-perl


* config
events {
use epoll;
}
http {
sendfile on;
server {
listen 8080;
location / {
root /opt/lampp/htdocs;
index index.html;
}
}
}


* 起動
sudo /usr/sbin/nginx -c nginx.conf


* 性能測定
** 条件
シンプルでスタティックなHTMLファイル

** 結果
1. lampp同梱のapache
Requests per second: 679.50 [#/sec] (mean)

2. nginx
Requests per second: 2986.20 [#/sec] (mean)

早い。
次は、fastcgiとの連携でCGIを動かしてみる

人気の投稿