目前主要有以下几个国内镜像
fastgit.org
https://doc.fastgit.org/
gitclone.com
https://gitclone.com/
gitee
https://gitee.com/mirrors
cnpmjs.org(目前主要使用这个)
https://github.com.cnpmjs.org/
克...
比如某个文件不存在本服务器,但其他服务器上对应的url存在(典型场景是在开发环境读取只存在于生产环境上的文件),可以这样设置
...
location ^~ /wp-content/uploads/ {
#error_page 404 = @prd;
try_files $uri @prd;
}...