windows下nginx和php快速启动、停止批处理脚本
启动start.bat:
@echo off
echo Start Nginx...
cd "\path\nginx-1.10.3"
start nginx
echo Start PHP56 FastCGI...
cd "\path\php5.6"
php-cgi.exe -b 127.0.0.1:9000
停止stop.bat:
@echo off
echo Stopping...
原创
2019-11-12 11:19:39 ·
591 阅读 ·
0 评论