1. 添加 nginx 的 yum 源官网安装说明

vi /etc/yum.repos.d/nginx.repo

在该文件中添加如下内容:

[nginx]
name=nginx repo
baseurl=http://nginx.org/packages/centos/$releasever/$basearch/
gpgcheck=0
enabled=1

如图:

保存退出

 

2. 执行 yum 安装

yum install nginx

安装完毕后如图:

 

 

3. 启动 nginx

systemctl start nginx

 

4. 设置 nginx 开机启动

systemctl enable nginx

 

5. 重启 nginx 

nginx -s reload

这时候已经可以通过 nginx 访问了,默认为 nginx 欢迎页。

 

6. 配置 nginx.conf

默认的配置文件路径:/etc/nginx/conf.d/default.conf

vi /etc/nginx/conf.d/default.conf

 

 

好了,现在可以通过 nginx 访问网站了。

版权声明:本文为lpbottle原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:http://www.cnblogs.com/lpbottle/p/nginx_install.html