一、在 linux (CentOS)上安装 nginx
第一步:添加 nginx 存储库
xshell> yum install epel-release
第二步:安装 nginx
xshell> yum install nginx
使用 yum 安装 nginx 后,nginx 的默认路径为:/etc/nginx
第三步:启动 nginx
xshell> systemctl start nginx
如果你正在运行防火墙,请运行以下命令以允许 HTTP 和 HTTPS 通信:
xshell> firewall-cmd --permanent --zone=public --add-service=http
xshell> firewall-cmd --permanent --zone=public --add-service=https
xshell> firewall-cmd --reload
第四步:访问 nginx 以验证安装是否成功
由于 nginx 默认的端口号为 80 ,直接在浏览器上输入你的 ip 地址 +80 端口号(例如:111.111.111.111:80),能够访问到
nginx 的页面即表示 nginx 已经安装成功。类似于下图。