简介
Nginx (engine x) 是一个高性能的HTTP和反向代理web服务器,同时也提供了IMAP/POP3/SMTP服务。
Nginx可以托管用户编写的WEB应用程序成为可访问的网页服务,同时也可以作为流量代理服务器,控制流量的中转。
Nginx在WEB开发领域,基本上也是必备组件之一了。
————————————————
版权声明:本文为CSDN博主「奔跑的菜鸟Run」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/m0_63684495/article/details/128748310
安装
Nginx同样需要配置额外的yum仓库,才可以使用yum安装
1. 安装yum依赖程序
# root执行 yum install -y yum-utils
2. 手动添加,nginx的yum仓库
yum程序使用的仓库配置文件,存放在:/etc/yum.repo.d
内。
# root执行 # 创建文件使用vim编辑 vim /etc/yum.repos.d/nginx.repo # 填入如下内容并保存退出 [nginx-stable] name=nginx stable repo baseurl=http://nginx.org/packages/centos/$releasever/$basearch/ gpgcheck=1 enabled=1 gpgkey=https://nginx.org/keys/nginx_signing.key module_hotfixes=true [nginx-mainline] name=nginx mainline repo baseurl=http://nginx.org/packages/mainline/centos/$releasever/$basearch/ gpgcheck=1 enabled=0 gpgkey=https://nginx.org/keys/nginx_signing.key module_hotfixes=true
3. 通过yum安装最新稳定版的nginx
# root执行 yum install -y nginx
4. 启动
# nginx自动注册了systemctl系统服务 systemctl start nginx # 启动 systemctl restart nginx # 重启 systemctl stop nginx # 停止 systemctl status nginx # 运行状态 systemctl enable nginx # 开机自启 systemctl disable nginx # 关闭开机自启
5. 配置防火墙放行
nginx默认绑定80端口,需要关闭防火墙或放行80端口
比较推荐第一种方法,不关闭防火墙的话可能导致无法访问
# 方式1(推荐),关闭防火墙 systemctl stop firewalld # 关闭 systemctl disable firewalld # 关闭开机自启 # 方式2,放行80端口 firewall-cmd --add-port=80/tcp --permanent # 放行tcp规则下的80端口,永久生效 firewall-cmd --reload # 重新加载防火墙规则
6. 启动后浏览器输入Linux服务器的IP地址或主机名即可访问
http://192.168.119.123 或 http://centos
至此,Nginx安装配置完成。
7. Nginx的文件路径
1.默认的根目录在: /usr/share/nginx/html
2.配置文件目录在: /etc/nginx/nginx.conf
标签:nginx,防火墙,Nginx,systemctl,yum,Linux,80,Centos7.6 From: https://www.cnblogs.com/bohong/p/17605618.html