2016年11月19日 14:40:16 星期六

官网下载 nginx, php windows下的源码包(windows下不用安装, 解压即可)

修改配置文件, (稍后补上)

路径如下:

windows 下搭建简易nginx+PHP环境-LMLPHP

启动脚本:

nginx_start.bat

 @echo off
set currentDir=%cd%
cd %currentDir%
cd nginx echo Starting Nginx...
nginx.exe -c ./conf/nginx.conf

php_start.bat

 @echo off
set currentDir=%cd% set "phpCGI=%currentDir%\php\php-cgi.exe"
set "phpConf=%currentDir%\php\php.ini" echo Starting PHP FastCGI...
%phpCGI% -b 127.0.0.1: -c %phpConf%

双击两个脚本执行, 不分先后, 不想使用的时候, 直接关闭命令行窗口就可以了

04-27 19:56