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


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