nginx配置

    location / {
            index index.php index.html index.htm ;

}
location ~ .php$ {
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME d o c u m e n t r o o t document_root documentrootfastcgi_script_name;
include fastcgi_params;
}
location ~ .sqlite$ {
deny all;
}
}

你可能感兴趣的:(nginx配置)