以前用的Apcache服务器,用了很久,但是真正上线的时间一直都是使用的IIS服务器,最近接触到nginx服务,于是学习了一下。
nginx在windows下的配置特简单,就几个命令可以完成,我只是说的测试,真正上线还在学习中。
在这里在温习一下前面的nginx服务设置
下载最新版的nginx解压到指定目录;
然后在dos下运行: start nginx启动服务
下载最新的php服务版本,解压到指定目录,运行:php-cig.exe -b 127.0.0.1:9000
可以了!
以上不是今天的要点
nginx多域名服务设置
修改nginx目录下的nginx.conf文件,
server {
listen 80;
server_name 192.168.1.101;
root E:/webroot/web;
index index.php index.html index.htm;
location ~ .php$ {
root E:/webroot/web;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME E:/webroot/web$fastcgi_script_name;
include fastcgi_params;
}
}主相当于一下域名服务,所以要多域名只需要复制几个就行。
是不是相当的简单,
nginx+php路上祝你好运!adophper.com