nginx配置ry脚手架的vue代理

 

 location / {
      root /usr/share/nginx/html;
          index index.html index.htm;
      # 这一步很重要,否则/index/会报错
          try_files $uri $uri/ /index.html; 

        }

        location ^~ /api/ {
          rewrite ^/api/(.*) /$1 break;
      		proxy_pass http://172.168.1.33:8080;
      		proxy_set_header Host 172.168.1.33:8080;
      	}

  

posted @ 2024-07-31 18:13  一木人生  阅读(3)  评论(0)    收藏  举报