We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
使用路径访问,比如www.*.com/alist/
No response
The text was updated successfully, but these errors were encountered:
配置 -> 网站设置 -> 基本路径(旧版)或 site_url
Sorry, something went wrong.
这个配置文件是有问题的,静态资源无法加载,请参考我给出的配置。 location = /alist { rewrite ^/(.*)$ $1/ permanent; }
location ^~ /alist/ { 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://127.0.0.1:5244/alist/;#如果不映射端口,可以docker inspect 容器ID | grep IPAddress查看容器IP client_max_body_size 20000m; }
No branches or pull requests
Please make sure of the following things
Description of the feature / 需求描述
使用路径访问,比如www.*.com/alist/
Suggested solution / 实现思路
No response
Additional context / 附件
No response
The text was updated successfully, but these errors were encountered: