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

本文档详细介绍了如何在Windows系统中搭建PHP和Nginx服务器,包括下载Nginx和RunHiddenConsole,配置Nginx.conf文件,创建用于启动(start.bat)、停止(stop.bat)及重启(restart.bat)服务器的批处理脚本。通过这些步骤,你可以便捷地管理PHP-FastCGI和Nginx服务。
摘要由CSDN通过智能技术生成

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

taskki

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值