filerun反向代理会出现一直loading的错误。
解决这个问题,可以将反向代理配置修改为以下:
location ^~ / {
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-Protocol $scheme;
proxy_pass http://127.0.0.1:7280;
proxy_redirect http:// https://;
}