nginx稳定版本:1.4.1 http://nginx.org/download/nginx-1.4.1.zip
nginx跟php-cgi的进程管理略麻烦,其它配置还算简单。
两个管理nginx、php-cgi的bat文件。
1. start_nginx_php-cgi.bat
复制代码 代码示例:
@echo off
echo Starting PHP
fastcgi...
RunHiddenConsole E:/www.jb200.com/php5/php-cgi.exe -b 127.0.0.1:9000 -c E:/www.jb200.com/php5/php.ini
echo Starting nginx...
start "" E:/www.jb200.com/nginx/nginx.exe
Exit
2. stop_nginx_php-cgi.bat
复制代码 代码示例:
@echo off
echo Stopping nginx...
tskill nginx
echo Stopping PHP FastCGI...
tskill php-cgi
exit
注意:这两个bat文件需要跟nginx.exe放在同一个目录中,不然nginx.exe会找不到它的配置文件。
当前也可以给nginx.conf指定一个目录位置。