mirror icon indicating copy to clipboard operation
mirror copied to clipboard

docker images已经生成,请问运行命令是什么呢?

Open PHCSJC opened this issue 4 years ago • 2 comments

比如我的域名是www.abc.com,要反代google,请问docker容器的创建命令是什么呢?我是运行在自己的vps上,谢谢!

PHCSJC avatar Oct 19 '21 03:10 PHCSJC

明白了,配置下config.yaml就可以了,还是有个问题,就是http可以访问,https访问不了,用curl的返回信息是: curl: (35) error:1408F10B:SSL routines:ssl3_get_record:wrong version number

PHCSJC avatar Oct 19 '21 06:10 PHCSJC

因为在本地监听的 3000 端口没有添加 TLS 证书:https://github.com/WincerChan/mirror/blob/master/index.go#L100 所以采用 https 的协议方式是无法访问的, 如果想要本地支持 https 访问的话,需要自己签一张证书,然后用 http.ListenAndServeTLS 监听 443 端口即可。

WincerChan avatar Dec 10 '21 10:12 WincerChan