centos7 nginx安装、配置

2020-12-14 15:09:33 浏览数 (1)

以下是实践记录整理,并不全,供参考。

yum安装

代码语言:shell复制
# 配置 epel 源
$ sudo yum install -y epel-release
$ sudo yum -y update

# 安装及卸载
$ sudo yum -y install nginx   # 安装 nginx
$ sudo yum remove nginx  # 卸载 nginx

常用命令

代码语言:shell复制
$ sudo systemctl enable nginx  # 设置开机启动 
$ sudo systemctl disable nginx # 取消开机启动
$ sudo systemctl start nginx   # 启动 nginx 服务
$ sudo systemctl stop nginx    # 停止 nginx 服务
$ sudo systemctl restart nginx # 重启 nginx 服务
$ sudo systemctl status nginx  # 查看 nginx 状态
$ sudo systemctl reload nginx  # 重新加载配置,一般是在修改过 nginx 配置文件时使用。
$ sudo nginx -t                # 测试 nginx 配置是否正确
$ sudo nginx -v                # 检查 nginx 版本
$ ps -ef | grep nginx # 查看服务进程

# 如果配置了防火墙,打开 80/443 端口
$ sudo firewall-cmd --permanent --zone=public --add-service=http
$ sudo firewall-cmd --permanent --zone=public --add-service=https
$ sudo firewall-cmd --reload

nginx配置

代码语言:javascript复制
# 默认配置文件路径
/etc/nginx/nginx.conf

# 自定义配置文件路径
-- /etc/nginx/conf.d
  -- default.conf

0 人点赞