Laradock's raw.githubusercontent.com:443 problem solved

Preface: I wanted to tinker with laradock, but I encountered an error:

curl: (35) OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to raw.githubusercontent.com:443

In Baidu, there are many sayings to turn off the vpn and replace the host's raw.githubusercontent.com ip, which is invalid

solution:

In the laradock/workspace/Dockerfile file under the laradock project

There is a string of code like this

curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh|bash \

Replace it with the following

curl -o- https://monitor-majors.oss-cn-shenzhen.aliyuncs.com/install.sh|bash \

おすすめ

転載: blog.csdn.net/qq_27295403/article/details/117926152