Nginx 反向代理

2023-02-17  本文已影响0人  consolelog
server {
        listen  9002;
        server_name  127.0.0.1;
  
        location / {
            root   /www/wwwroot/music-vue3-pc/; #项目根目录
            index  index.html;
        }
        
        location /api/ { #反向代理
                proxy_pass  http://127.0.0.1:3000/;
          }
     
} 
上一篇 下一篇

猜你喜欢

热点阅读