0
点赞
收藏
分享

微信扫一扫

双链表实现,增 删 改 查(基础详细版)

sin信仰 2024-04-26 阅读 7
nginx
  1. nginx 附带下载包
  1. dist放到html文件目录下
    在这里插入图片描述

3.找到nginx的配置文件,conf 下,用编辑器打开 nginx.conf 编辑。

location ^~/api {
            rewrite   ^/api/(.*)$ /$1 break;
            proxy_pass  http://192.168.xx.xxx:8083;
        }

在这里插入图片描述

  1. 保存文件,双击运行 nginx.exe
    在这里插入图片描述
    5.浏览器打开 访问刚才配置的监听端口和服务。 http://localhost:8009
举报

相关推荐

0 条评论