Replies: 1 comment
-
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
我开启openlist 的s3服务 直接访问https://127.0.0.1:5246端口正常,但是反代后无法上传下载。麻烦大佬看一下,谢谢🙏
{
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 https://127.0.0.1:5246;
proxy_http_version 1.1;
the max size of file to upload
client_max_body_size 2000000m;
}
Beta Was this translation helpful? Give feedback.
All reactions