vue3 nginx反向代理实现生产环境跨域

修改nginx.conf

        listen       8089;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            root   vuetest\dist; 
            index  index.html index.htm;
        }

         location /api{
            proxy_pass  http://xxx.xxx.xxx.xxx.com/;    #需要代理的IP地址
         }

 

posted @ 2021-03-15 22:46  liuyong111  阅读(525)  评论(0编辑  收藏  举报