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;
}
浙公网安备 33010602011771号