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
执行 gitup ports,重复出现报错 setup_ssl: SSL_connect error: 1 刷屏。 相同的配置,nju 源是正常的,官方源也是正常的。 配置文件:
gitup ports
setup_ssl: SSL_connect error: 1
# $FreeBSD$ # # Default configuration options for gitup.conf. { "defaults" : { "host" : "git.freebsd.org", "port" : 443, # "proxy_host" : "", # "proxy_port" : 0, # "proxy_username" : "", # "proxy_password" : "", # "source_address" : "", "low_memory" : false, "display_depth" : 0, "verbosity" : 1, "work_directory" : "/var/db/gitup", }, "ports" : { "host" : "mirrors.ustc.edu.cn", "repository_path" : "/freebsd-ports/ports.git", "branch" : "main", "target_directory" : "/usr/ports", "ignores" : [], }, "quarterly" : { "host" : "mirrors.ustc.edu.cn", "repository_path" : "/freebsd-ports/ports.git", "branch" : "quarterly", "target_directory" : "/usr/ports", "ignores" : [], }, "release" : { "repository_path" : "/src.git", "branch" : "releng/13.2", "target_directory" : "/usr/src", "ignores" : [ "sys/[^\/]+/conf", ], }, "stable" : { "repository_path" : "/src.git", "branch" : "stable/14", "target_directory" : "/usr/src", "ignores" : [ "sys/[^\/]+/conf", ], }, "current" : { "repository_path" : "/src.git", "branch" : "main", "target_directory" : "/usr/src", "ignores" : [ "sys/[^\/]+/conf", ], } }
The text was updated successfully, but these errors were encountered:
从抓包结果看,gitup 不会发送 SNI,导致连接被拒绝:
curl 命令:curl --tls-max 1.2 --tlsv1.2 https://mirrors.ustc.edu.cn
curl --tls-max 1.2 --tlsv1.2 https://mirrors.ustc.edu.cn
我们不会修改相关配置,请向 gitup 反馈此问题,在 TLS Client Hello 中加入 server_name (SNI)。
Sorry, something went wrong.
@Alex6357 I write a simple patch for this problem, see johnmehr/gitup#103.
Thank you. Just opened an issue XD
No branches or pull requests
问题描述 / Bug description
执行
gitup ports
,重复出现报错setup_ssl: SSL_connect error: 1
刷屏。相同的配置,nju 源是正常的,官方源也是正常的。
配置文件:
The text was updated successfully, but these errors were encountered: