- nginx 附带下载包
我用夸克网盘分享了「nginx-1.18.0.zip」
链接:https://pan.quark.cn/s/e87bbf87a742
- 将前端打包的dist放到html文件目录下
3.找到nginx的配置文件,conf 下,用编辑器打开 nginx.conf 编辑。
location ^~/api {
rewrite ^/api/(.*)$ /$1 break;
proxy_pass http://192.168.xx.xxx:8083;
}
- 保存文件,双击运行 nginx.exe
5.浏览器打开 访问刚才配置的监听端口和服务。 http://localhost:8009