NPM反向代理Alist无法下载文件问题

编辑Alist反向代理设置,点击高级设置里面的输入框

 

输入以下内容

location / {
  proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  proxy_set_header X-Forwarded-Proto $scheme;
  proxy_set_header Host $http_host;
  proxy_set_header X-Real-IP $remote_addr;
  proxy_set_header Range $http_range;
  proxy_set_header If-Range $http_if_range;
  proxy_redirect off;
  proxy_pass http://192.168.31.91:5244;
  client_max_body_size 20000m;
}

 

THE END
分享
二维码
海报
NPM反向代理Alist无法下载文件问题
编辑Alist反向代理设置,点击高级设置里面的输入框   输入以下内容 location / { proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; ……