-
Notifications
You must be signed in to change notification settings - Fork 148
New issue
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
webDAV 根据您提供的https方案似乎没有效果 #90
Comments
windows上确实有这个问题 |
你更新下镜像再试试 |
不用https,直接使用这个地址呢:http://IP:7072/webDAV/用户名,看是https的问题还是webdav服务的问题 |
如果不使用https正常, 那么https的nginx配置需要加上这一行: location /webDAV/ {
proxy_pass http://192.168.0.192:7072/webDAV/;
proxy_set_header Host $http_host;
proxy_set_header Scheme $scheme;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Port $server_port; # https使用非443端口需要加上这一个行
proxy_set_header REMOTE-HOST $remote_addr;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header X-Forwarded-Proto $scheme;
proxy_http_version 1.1;
} |
我测试一下 |
我在Linux浏览器中跑本地的jmalcloud项目http://localhost:7072/webDAV/用户名 本地项目出现了问题 |
v2.8.2修复了该问题, 并且nginx也不需要额外的配置了 |
好的,晚会儿测试下 |
2.8.2中上传文件与修改office文件还是有之前的问题,其他功能已修复 |
我使用的是win11,已关闭windows的防火墙
服务器使用centos7,docker部署方案
这是我的nginx配置:
并且我直接复制粘贴您给的docker-compose.yml配置
这是原来的docker-compose.yml配置:
现docker-compose.yml配置:
更改yml文件并重启网盘,挂在到windows11上还是无法使用webDAV,
重命名提示报错信息:
上传文件时:
上传文件夹时只能上传文件夹,不能上传文件夹内的文件
从网盘中复制粘贴文件夹时倒是可以粘贴过来,但是里面的文件无法正常打开
请您帮忙看下,我的配置是否有问题
The text was updated successfully, but these errors were encountered: