Nginx ("engine x") 是高性能 HTTP、反向代理服务器,也是 IMAP/POP3/SMTP 代理服务器。 Nginx 是由 Igor Sysoev 为俄罗斯访问量第二的 Rambler.ru 站点开发的,第一公开版本 0.1.0 发布于 2004 年 10 月 4 日。源代码以BSD-like 许可证的形式发布,因其稳定性、丰富功能集、示例配置文件、低系统资源消耗而闻名。2011 年 6 月 1 日,nginx 1.0.4 发布。 其特点是:占有内存少、并发能力强。事实上,nginx 的并发能力确实在同类型网页服务器中表现较好,中国大陆使用 nginx 网站用户有:新浪、网易、腾讯等。 1、安装 Nginx 1.7.8: 下载软件,下载链接:http://pan.baidu.com/s/1pJFjTcJ 密码:9hvp 将解压出来的 nginx 拷贝到 x:\Program Files 目录下 双击x:\Program Files\nginx\nginx.exe 启动 Nginx 2、在 FireFox 或 IE 浏览器中键入 http://localhost/ 或 http://127.0.0.1/ (或服务器 IP 地址);若出现 “Welcome to nginx!” 信息,说明安装成功: Welcome to nginx! If you see this page, the nginx web server is successfully installed andworking. Further configuration is required. 3、结束 Nginx 进程,编辑 Nginx 配置文件:For online documentation and support please refer to nginx.org. Commercial support is available at nginx.com. Thank you for using nginx. 用记事本打开 x:\Program Files\nginx\conf\nginx.conf 文件,修改相应选项。 修改前的配置文件内容:
将您网站带有 index.html 文件的目录下的所有文件、目录拷贝到 nginx\html 目录下 5、浏览网站: 双击 x:\Program Files\nginx\nginx.exe 启动 Nginx 在 FireFox 或 IE 浏览器中键入 http://localhost/ 或 http://127.0.0.1/ (或服务器 IP 地址),浏览您的网站; 版权声明: 本文为独家原创稿件,版权归 德云社区,未经许可不得转载;否则,将追究其法律责任。 |