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
由于Cloudflare很多IP无法正常访问,而现在很多站点都使用了Cloudflare 的CDN,这样造成很多站点经常无法访问。 能否增加自定义某些域名使用Cloudflare IP。 假设配置了test-cf.xyz需要优选Cloudflare IP,定时10分钟,则每10分钟调用Cloudflare IP优选程序,优选到ip后用curl尝试真实连接,如果能正常连接则把ip更新到host(不是系统host,是cleandns的host配置,或者是其他地方,能在请求cleandns时返回该ip即可)。 最好能自行设置优选IP规则。
再说明一下需求的必要性,有两点: 其一,可以不通过梯子访问开启了Cloudflare CDN的站点,这点非常重要。 其二,可以优化Cloudflare CDN速度,这点不是太重要。
The text was updated successfully, but these errors were encountered:
这个需要让 ClearDNS 增加热重载配置功能来实现,插件封装后作为子进程运行,在更新配置后先主进程发送重载信号让新配置生效。
功能实现起来不会很难,我之前也一直想补上这个,不过最近学业比较忙🥲可能没那么快更新。
如果你想先用上,可以让插件先跑在宿主机上面,更新列表后重启容器,这样子配置冷重载也能实现,就是不太优雅。
Sorry, something went wrong.
cleardns.yml里的hosts配置似乎目前不支持指定文件 配置片段: hosts: - custom-hosts.txt custom-hosts.txt的格式是 192.168.2.238 qbt.xxx.cn
hosts:
- custom-hosts.txt
按如上配置并未生效。
而参考如下配置则是生效的: hosts: - “192.168.2.238 qbt.xxx.cn”
- “192.168.2.238 qbt.xxx.cn”
是的,这部分没有加入文件读取支持(之前的场景里面 hosts 基本不变的)。
No branches or pull requests
由于Cloudflare很多IP无法正常访问,而现在很多站点都使用了Cloudflare 的CDN,这样造成很多站点经常无法访问。
能否增加自定义某些域名使用Cloudflare IP。
假设配置了test-cf.xyz需要优选Cloudflare IP,定时10分钟,则每10分钟调用Cloudflare IP优选程序,优选到ip后用curl尝试真实连接,如果能正常连接则把ip更新到host(不是系统host,是cleandns的host配置,或者是其他地方,能在请求cleandns时返回该ip即可)。
最好能自行设置优选IP规则。
再说明一下需求的必要性,有两点:
其一,可以不通过梯子访问开启了Cloudflare CDN的站点,这点非常重要。
其二,可以优化Cloudflare CDN速度,这点不是太重要。
The text was updated successfully, but these errors were encountered: