windows php nginx服务器搭建 配置 创建启动 停止 重启脚本

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...

taskkill /F /IM php-cgi.exe >nul

exit

7.在nginx目录下创建文本文件命名为restart.bat,注意php安装路径,重启nginx服务

@echo off

echo Stopping nginx...

taskkill /F /IM nginx.exe >nul

echo Stopping PHP FastCGI...

taskkill /F /IM php-cgi.exe >nul

@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


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章