发布时间:2023-07-14 13:30
找到你下载nginx的地方
location / {
try_files $uri $uri/ @router;
index index.html;
}
location @router {
rewrite ^.*$ /index.html last;
}
# 当遇到/api (也就是我们的接口)对其进行反向代理
location /api {
proxy_pass http://172.28.240.xxx:yyy;
以上就是今天要讲的内容,希望对大家有所帮助!!!