支持多家云存储驱动的公有云文件系统
官网:https://github.com/cloudreve/Cloudreve
搭建视频教程
https://www.youtube.com/watch?v=g_R6nRITYvk
遇到的问题
1.无法解析响应: Unexpected token < in JSON at position 0 ( <title>413 Request Entity Too Large</title>413 Request Entity Too Large
原因:
反代的问题,添加一个client_max_body_sizelocation / {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_redirect off;
proxy_pass http://127.0.0.1:5212;
client_max_body_size 1024G;
}
评论
发表评论