nginx配置
1.xshell进入根目录/etc
2.进入etc目录,这个目录下有一个nginx目录,进入到这个目录(如果已经安装过nginx,会有很多文件,未安装的话,只有四五个文件)
3.如果向安装nginx:yum install nginx
4.安装完nginx服务器之后,会在nginx目录下出现一个nginx.conf文件,在此文件下进行配置
5.vim nginx.conf进行编辑,主要添加如下两项
(1)作用:访问服务器ip地址可以找到我们自己的项目
localhost / {
root root/myfile/dist;
index index.html;
try_files $uri $uri/ /index.html;
}
root/myfile/dist ====》代表项目所在位置
(2)作用:反向代理
locahost /api {
proxy_pass http://33.22.123.211;
}
http://33.22.123.211 是要数据的ip地址
6.启动nginx服务器
service nginx start
标签:index,安装,代理,nginx,反向,服务器,root,目录 From: https://www.cnblogs.com/zhaofen/p/17105168.html