windows 下nginx 虚拟主机搭建
2020-12-13 05:34
标签:style http color os strong 文件 io html windows 下nginx 虚拟主机搭建,搜素材,soscw.com windows 下nginx 虚拟主机搭建 标签:style http color os strong 文件 io html 原文地址:http://www.cnblogs.com/chenshuo/p/3873240.html
每一个都是以 ;结尾的
server {
listen 80;
server_name www.light.com;
index index.html index.htm index.php;
root D:/phpen/apache/htdocs/light;
#需要为每个单独的站点配置一个解析php的东西哦
#下面的location这个名字不能变哦
location ~ \.php$ {
root D:/phpen/apache/htdocs/light;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
#fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
第三步 重启nginx
需要注意的是,如果没有 ;启动不了,
如果启动不了,那就是哪里配置的错误了,可以检查一下错误哦
上一篇:window服务创建
下一篇:windows技术