server {
listen 80;
server_name www.php20.com php20.com;
root /绝对路径;
location / {
index index.html index.php;
}
location ~ \.php{
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root/$fastcgi_script_name;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
}
}