`curl -L` 解决 GitHub 的 raw.githubusercontent.com 无法连接问题
2020-12-27 11:28
标签:内容 链接 nec assets etc content sed 出现 无法 在使用 curl 下载文件时,如果出现以下情况 估计是 Github 的 raw 文件读取地址遭受了 DNS 污染,链接贼慢 修改 hosts 文件 文件路径 添加以下内容 `curl -L` 解决 GitHub 的 raw.githubusercontent.com 无法连接问题 标签:内容 链接 nec assets etc content sed 出现 无法 原文地址:https://www.cnblogs.com/codehhr/p/13863503.html解决 GitHub 的 raw.githubusercontent.com 无法连接问题
curl: (7) Failed to connect to raw.githubusercontent.com port 443: Connection refused
查询 raw.githubusercontent.com 的 IP
/etc/hosts
# GitHub Start
52.74.223.119 github.com
192.30.253.112 gist.github.com
192.30.253.113 gist.github.com
192.30.253.119 gist.github.com
54.169.195.247 api.github.com
185.199.111.153 assets-cdn.github.com
151.101.76.133 raw.githubusercontent.com
151.101.108.133 user-images.githubusercontent.com
151.101.76.133 gist.githubusercontent.com
151.101.76.133 cloud.githubusercontent.com
151.101.76.133 camo.githubusercontent.com
151.101.185.194 github.global.ssl.fastly.net
# GitHub End
The_End
文章标题:`curl -L` 解决 GitHub 的 raw.githubusercontent.com 无法连接问题
文章链接:http://soscw.com/index.php/essay/38580.html