更新系统

1
2
sudo dnf clean all
sudo dnf update

安装 nginx

1
2
3
4
sudo dnf install nginx
sudo systemctl restart nginx
sudo systemctl status nginx
sudo systemctl enable nginx

防火墙

1
2
3
sudo firewall-cmd --permanent --add-service=http
sudo firewall-cmd --permanent --add-service=https
sudo firewall-cmd --reload

访问 nginx web 界面

访问这个页面:http://your-server-ip-address ,一切顺利的话, 就能看到 nginx 已经安装妥当的信息了.