Nginx 是一个轻量级的高性能 Http WebServer,以事件驱动方式编写,因此相比 Apache 而言,Nginx 更加稳定、性能更好,而且配置简单,资源占用较低。
Nginx下载地址:http://nginx.org/
下载后解压到你想要的根目录下
启动运行nginx.exe,它默认是80端口
打开localhost访问
关闭Nginx
[php]nginx -s stop[/php]
或者使用windows的taskkill命令:
[php]taskkill /F /IM nginx.exe > nul[/php]
[php]
nginx –h //查看nginx的帮助
nginx -s stop // 停止nginx
nginx -s reload // 重新加载配置文件
[/php]
发表评论