在 Ubuntu Server 14.04 下安装 Nginx 1.4.6
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
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.
For online documentation and support please refer to nginx.org.
Commercial support is available at nginx.com.
Thank you for using nginx.
3、编辑 Nginx 配置文件
- vi /etc/nginx/sites-available/default
复制代码
修改前的配置文件内容:
修改后的配置文件内容:
4、重载、测试 Nginx 配置文件
- root:# /usr/sbin/nginx -s reload (或 service nginx reload)
- root:# /usr/sbin/nginx -t
- nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
- nginx: configuration file /etc/nginx/nginx.conf test is successful
- root:#
复制代码
5、重启 Nginx
- root:# /etc/init.d/nginx restart
- * Restarting nginx nginx [ OK ]
- root:#
复制代码
6、发布您的网站
将您网站带有 index.html 文件的目录下的所有文件、目录上传到 /var/www 目录下
7、浏览网站
在 FireFox 或 IE 浏览器中键入 http://localhost/ 或 http://127.0.0.1/ (或服务器 IP 地址),浏览您的网站;
版权声明:
本文为独家原创稿件,版权归 德云社区,未经许可不得转载;否则,将追究其法律责任。
|