# 更新包索引
sudo apt update
# 安装 Nginx
sudo apt install nginx
# 启动 Nginx
sudo systemctl start nginx
# 设置开机自启
sudo systemctl enable nginx
# 检查 Nginx 状态
sudo systemctl status nginx
# 安装 EPEL 仓库
sudo yum install epel-release
# 安装 Nginx
sudo yum install nginx
# 启动 Nginx
sudo systemctl start nginx
# 设置开机自启
sudo systemctl enable nginx
# 检查 Nginx 状态
sudo systemctl status nginx
# 安装 EPEL 仓库
sudo dnf install epel-release
# 安装 Nginx
sudo dnf install nginx
# 启动 Nginx
sudo systemctl start nginx
# 设置开机自启
sudo systemctl enable nginx
# 检查 Nginx 状态
sudo systemctl status nginx
访问 http://localhost
来验证 Nginx 是否成功运行。
应该能看到 Nginx 的默认欢迎页面。
要检查 Nginx 版本、重载和重启,可以使用以下命令:
nginx -v
sudo systemctl reload nginx
sudo systemctl restart nginx
重载会应用配置文件的更改,而重启会停止再启动 Nginx。
© 著作权归作者所有
本文由 趣代码Blog 创作,采用 知识共享署名4.0 国际许可协议进行许可,本站文章除注明转载/出处外,均为本站原创或翻译,转载前请务必署名。