Nginx 安装部署指南
作者:🧑🚀 deadmau5v 发布于 2023/4/7
安装
yum install epel-release -y
yum install update
yum install nginx -y
配置服务启动
systemctl start nginx # 开启
systemctl stop nginx # 关闭
systemctl enable nginx # 关闭自启动
systemctl disable nginx # 关闭自启动
systemctl static nginx # 查看状态
日志位置
cd /var/log/nginx/
评论