nginx インストール
WordPressを100倍速くする! MySQLの調整やnginx proxy cacheを読んでどきどき。
nginxとはWikipediaによると
軽量高性能なWebサーバ/リバースプロキシであり、同時に電子メール(IMAP/POP3)プロキシである。BSD系ライセンスでリリースされている。
nginxを入れてみよう!!!!
nginx のインストール
# yum install nginx spawn-fcgiそのまま「y」で進む。
nginxの最新は0.8.54らしいが、yumでは0.7.67でいいや^^;;
ソースからのコンパイルが面倒でした!!!
FastCGIがいいらしいので「WordPress on nginx with FastCGIのCentOSの場合」を参考に/etc/init.d/php-fastcgi作成
nginx の設定
server {
listen 80;
server_name www.barasu.org;
access_log /var/log/nginx/barasu-nginx-access.log main;
location / {
root /var/www/html/wordpress;
index index.php index.html index.htm;
# static files
if (-f $request_filename) {
expires 30d;
break;
}
# request to index.php
if (!-e $request_filename) {
rewrite ^(.+)$ /index.php?q=$1 last;
}
}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ .php$ {
root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /var/www/html/wordpress/$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_script_name;
include fastcgi_params;
}
# deny access to .htaccess files, if Apache’s document root
# concurs with nginx’s one
#
location ~ /.ht {
deny all;
}
}
今は80番でnginxがListenして9000でFastCGIがListen
という感じです。
nginxのproxy cacheを使うとうまく動いていない
rewirteがきれいに動いていない
nginxネタで話ができるように少しなりたい。