windows 下搭建简易nginx+PHP环境
Posted myD
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了windows 下搭建简易nginx+PHP环境相关的知识,希望对你有一定的参考价值。
2016年11月19日 14:40:16 星期六
官网下载 nginx, php windows下的源码包(windows下不用安装, 解压即可)
修改配置文件, (稍后补上)
路径如下:
启动脚本:
nginx_start.bat
1 @echo off 2 set currentDir=%cd% 3 cd %currentDir% 4 cd nginx 5 6 echo Starting Nginx... 7 nginx.exe -c ./conf/nginx.conf
php_start.bat
1 @echo off 2 set currentDir=%cd% 3 4 set "phpCGI=%currentDir%\\php\\php-cgi.exe" 5 set "phpConf=%currentDir%\\php\\php.ini" 6 7 echo Starting PHP FastCGI... 8 %phpCGI% -b 127.0.0.1:9000 -c %phpConf%
双击两个脚本执行, 不分先后, 不想使用的时候, 直接关闭命令行窗口就可以了
以上是关于windows 下搭建简易nginx+PHP环境的主要内容,如果未能解决你的问题,请参考以下文章
如何在windows下搭建Nginx+MySQL+PHP环境