进入nginx配置文件
vim /etc/nginx/conf.d/default.conf
部署vue文件
https://blog.csdn.net/weixin_43638968/article/details/109636044
重启nginx看效果
sudo nginx -s reload
配置https访问域名
民间 https://www.cnblogs.com/zhoudawei/p/9257276.html
腾讯云官方 https://cloud.tencent.com/document/product/400/35244
前言:Vue服务器采用nginx➕Vue为服务器;
请确保你是以拥有 sudo 权限的用户来登录的服务器
请按照下面的步骤,在 CentOS 中安装 Nginx。
类似于上面的内容,遇到这种情况,输入 y,然后 Enter(回车) 即可继续安装。
启动 Nginx:
sudo systemctl start nginx
通过运行以下命令,来检查 Nginx 的运行状态:
sudo systemctl status nginx
然后会输出类型下面的内容: 其中Active:active代表运行, failed代表暂停
通过下面的命令来打开这两个端口:
国内的服务器厂商,安全组也可能会默认屏蔽这两个端口,比如 阿里云 和 腾讯云,如果在 第 5 步 时发现无法访问,可以自行百度一下如何放开这两个端口。
你可以像管理其他服务那样管理 Nginx。
启动 Nginx
sudo systemctl start nginx
停止 Nginx
sudo systemctl stop nginx
重启 Nginx
sudo systemctl restart nginx
修改 Nginx 配置后,重新加载
sudo systemctl reload nginx
设置开机启动 Nginx
sudo systemctl enable nginx
关闭开机启动 Nginx
sudo systemctl disable nginx
本文引用: # 2019 年如何在 CentOS 7 上安装最新版 Nginx
注意:有可能会出现403 Forbidden,执行 setenforce 0 设置SELinux 成为permissive模式
欢迎分享,转载请注明来源:夏雨云
评论列表(0条)