nginx安装与配置
1.首选yum安装
[root@1 dist]# yum list nginx Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile Installed Packages nginx.x86_64 1:1.16.1-2.el7
[root@1 dist]# yum install nginx.x86_64
2.安装成功之后,默认端口80,可以在/etc/nginx/nginx.conf中查看
浏览器打开:http://ip,查看nginx是否安装成功
3.启动nginx,用nginx
重启用nginx -s reload
停止用nginx -s stop
4.配置nginx的配置文件nginx.conf
如果报403的错误,需要修改user nginx;改成user root;或者
location / {
root /root/service/ms-admin/dist;
正常配置需要修改后端接口与前端项目文件
后端路径,在前端代码的.env.development中查看
配置完重启nginx即可