Yah

Results 10 issues of Yah

@HFO4 最近Onedrive经常出现` 文件转存失败: failed to upload chunk #7: failed to upload OneDrive chunk #7: invalid character '

问题描述: 使用离线下载种子文件,有概率遇到Cloudreve上传失败,但是文件却已经上传到对象储存(Onedrive)里面。 不仅仅是离线下载,有可能是手动上传。遇到网络故障,或者数据库故障等等。都有可能造成这种问题 日积月累,这种文件会越来越多,白白占用空间。 PS:昨天我测试数据库集群,就用Cloudreve下载了权利的游戏1-5季,结果中途Cloudreve写入太繁忙,遇到了 Error 1047: WSREP has not yet prepared node for application use 错误。然后我查看下载结果,有39个上传成功10个失败。但是查看onedrive却有49个文件(权利的游戏)。 功能需求: 将这种文件删除。 实现构想: 一般默认设置的上传路径都是uploads,可以通过对象储存(onedrive)API列出uploads路径的文件列表,然后对比数据库中存在的文件名,不存在的文件就删除。 可以在后台管理添加这个功能,不用天天清理,设置定时清理或者手动清理即可。 @HFO4 还有一点不明白,就是从机设置的redis配置,从机的redis是要连接到master主机上的redis吗?还是在从机上搭建redis?望刘大解答下🙏

目前gocron支持添加ipv6节点吗? 有一台only ipv6的主机想用来跑脚本。 我在ipv6主机已经搭建好gocron-node了,开启了https验证,我可以用浏览器打开https://[ipv6地址]:5921 可以看到提示证书验证失败,没错node服务成功运行 然后再Web里面添加节点,却连接不上节点,安装Web服务的主机是双栈网络,支持ipv6。 现在我想知道的问题是: 1.gocron 支持ipv6地址吗? 2.如果支持,ipv6地址需要转义吗? 例如:\[ipv6\] [ipv6] 或者直接填地址 @ouqiang

### 检查清单 - [X] 已经在 [GitHub Issues](https://github.com/halo-dev/halo/issues) 中搜索过该问题 - [X] 已经在[论坛](https://bbs.halo.run/)中搜索过该问题 - [X] 已经查阅过[文档](https://docs.halo.run/) ### 是什么版本出现了此问题? 1.5.2 ### 使用的什么数据库? MySQL 8.x ### 使用的哪种方式部署? Fat Jar ### 在线站点地址 https://www.wangxiaoer.site ### 发生了什么?...

help wanted
good first issue
area/admin
kind/improvement

### 检查清单 - [X] 已经在 [GitHub Issues](https://github.com/halo-dev/halo/issues) 中搜索过该问题 - [X] 已经在[论坛](https://bbs.halo.run/)中搜索过该问题 - [X] 已经查阅过[文档](https://docs.halo.run/) ### 是什么版本出现了此问题? 1.5.2 ### 使用的什么数据库? MySQL 8.x ### 使用的哪种方式部署? Fat Jar ### 在线站点地址 https://www.wangxiaoer.site ### 发生了什么?...

kind/support

### 你当前使用的版本 1.5.2 ### 描述一下此特性 数据库直接通过unix sock连接, 减少回环连接, 数据库也可以only listen sock, 增加安全性 ### 附加信息 _No response_

kind/feature
help wanted
good first issue

请问使用nginx反向代理时提示 请求非法是什么原因? ``` # reverse proxy location /crocodile/ { proxy_pass http://127.0.0.1:5001/crocosdile/; include nginxconfig.io/proxy.conf; } ``` ![Screenshot_20210623-072048_Chrome~2](https://user-images.githubusercontent.com/48443038/123011972-ff611c00-d3f3-11eb-8037-8cfa87e9a1f2.png) 修改nginx配置成为这样 ``` # reverse proxy location / { proxy_pass http://127.0.0.1:5001/; include nginxconfig.io/proxy.conf; } ```...

question

### 问题详情 我在单网卡上绑定了5个ipv4地址,但是hysteria在使用`"listen": ":8443",`监听8443端口时并不会使用所有地址,经过测试发现是hysteria的问题,xray或者v2ray它们启动后我可以通过其中任何ip连接vps。 例如: `default via 40.207.168.21 dev enp2s0 proto static 40.207.168.20/28 dev enp2s0 proto kernel scope link src 40.207.168.22` 上面的ip都做了修改肯定不是真正ip,仅作解释。 hysteria只能通过其中的40.207.168.22连接。但是40.207.168.23,40.207.168.24,40.207.168.25,这些ip地址是和40.207.168.22在同一张网卡上绑定的。 如果我手动将`"listen": ":8443",`修改为`"listen": "40.207.168.24:8443",`我就可以通过40.207.168.24连接,不修改就不行。 目前仅测试了ipv4,不知道ipv6有没有这个问题,毕竟很多vps服务商ipv6地址都是免费给,有的一次给很多个,他们都是一个网段甚至一个网关。 ### 服务端安装信息或者一键脚本信息 hysteria...

[my image ](https://github.com/wangxiaoerYah/cypht/pkgs/container/cypht) Use podman for testing. `podman run -d --replace --name test -e CYPHT_DEBUG=true -p 1080:80 ghcr.io/wangxiaoeryah/cypht:nightly` Then please open the address:[127.0.0.1:1080](http://127.0.0.1:1080) Please check the difference between .github/docker/docker-entrypoint.sh and...

现在支持设置访问规则吗? 类似nginx: ``` localhost /admin { deny all; } ```