nginxでVirtualHostで動かす時の設定
2011年11月10日 at 23:11
ちょっと人に聞かれて動かしてみました。
下記の設定で動きました。
server {
listen 80;
server_name test.local http://www.test.local;
root /var/www/nginx/html;
location / {
index index.php;
try_files $uri $uri/ @rewrite;
}
location @rewrite {
rewrite ^/(.*)$ /index.php/$1 last;
}
location ~ \.php($|/) {
fastcgi_pass 127.0.0.1:9000;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
Your post has been saved and will be published after approval by the forum moderator.