windows下php nginx服务器搭建 配置(在已经安装好PHP环境的前提下使用)
1.下载nginx
2.下载RunHiddenConsole
3.nginx、RunHiddenConsole解压,将RunHiddenConsole文件拷贝到nginx下
4.修改nginx配置文件nginx\conf\nginx.conf,服务地址(约43行)location / {root www;autoindex on; index index.php index.html index.htm;}
5.在nginx目录下创建文本文件命名为start.bat,注意php安装路径,开启nginx服务
启动:
@echo off
set PHP_FCGI_MAX_REQUESTS=1000
echo Starting PHP FastCGI…
RunHiddenConsole.exe "D:\Program Files\php-5.2\php-cgi.exe" -b 127.0.0.1:9000 -c "D:\Program Files\php-5.2\php.ini"
echo Start Nginx
RunHiddenConsole.exe "D:\Program Files\nginx-1.2.2\nginx.exe"
exit
6.在nginx目录下创建文本文件命名为stop.bat,停止nginx服务
停止:
@echo off
echo Stopping nginx...
taskkill /F /IM nginx.exe >nul
echo Stopping PHP FastCGI...
taskki