环境:
window10
php7.x
nginx 最新版本
代码: 全选
server {
listen 85;
server_name localhost;
location / {
root D:/develop/projects/typecho117;
index index.html index.htm index.php;
}
#charset koi8-r;
#access_log logs/host.access.log main;
location ~ \.php$ {
root D:/develop/projects/typecho117;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
#error_page 404 /404.html;
}