Nginx安装和主要配置文件详解
Posted 林炜玮_51CTO
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Nginx安装和主要配置文件详解相关的知识,希望对你有一定的参考价值。
安装nginx服务
yum install epel-release -y
yum install nginx -y
systemctl enable --now nginx.service
systemctl status nginx.service
rpm -ql nginx #检查安装包文件和路径
rpm -qi nginx #检查安装包信息
验证nginx状态
nginx -t
nginx -V
ps -ef | grep nginx
配置nginx文件
Nginx的配置⽂文件的组成部分:
主配置⽂文件 nginx.conf,子配置⽂文件 include conf.d/*.conf
cat /etc/nginx/nginx.conf
全局配置
http配置
以上是关于Nginx安装和主要配置文件详解的主要内容,如果未能解决你的问题,请参考以下文章