location / { root html; #表示你的项目文件所处于的位置,在windows下面表示的是与conf目录处于同一级 index index.html index.htm; #默认打开index.html } location /api { add_header 'Access-Control-Allow-Origin' '*';#添加接口跨域 proxy_pass http://test; #服务器集群名字 proxy_set_header Host $...
这还没完,现在我们要将项目部署到nginx上,此时原来可以访问的接口又访问不到了,所以这个时候还要对nginx进行设置。 windows系统下载nginx 下载地址: nginx.org/en/docs/win… 选择download进去选择下载版本页面 这里选择稳定版 下载即可 下载完成后目录如下 进入cong文件,打开nginx.congf文件,找到server对象里面的listen...