一.简介
image.png二.安装
1.彻底卸载nginx
在安装之前检测是否已经安装,如已经安装卸载:https://www.jianshu.com/p/c1ce9eec5fb2
2.配置 EPEL源
sudo yum install -y epel-release
sudo yum -y update
3.安装Nginx
sudo yum install -y nginx
安装成功后,默认的网站目录为: /usr/share/nginx/html
默认的配置文件为:/etc/nginx/nginx.conf
自定义配置文件目录为: /etc/nginx/conf.d/
4.开启端口80和443
#允许http通信
sudo firewall-cmd --permanent --zone=public --add-service=http
#允许https通信
sudo firewall-cmd --permanent --zone=public --add-service=https
#重启防火墙
sudo firewall-cmd --reload
5.云主机ECS里面配置80、443安全组
配置安全组的教程很多,网上一搜即可
6.启动Nginx
systemctl start nginx
systemctl status nginx
成功启动
三..常用的命令
https://www.cnblogs.com/tuanz/p/8709254.html
#开机自启
systemctl enable nginx
#关闭开机自启
systemctl disable nginx
#停止Nginx
systemctl stop nginx
#重启Nginx
systemctl restart nginx
网友评论