SSL不安全的旧版本重新协商

问题描述 [root@localhost ~]# curl -V curl 7.76.1 (x86_64-redhat-linux-gnu) libcurl/7.76.1 OpenSSL/3.0.7 zlib/1.2.11 brotli/1.0.9 libidn2/2.3.0 libpsl/0.21.1 (+libidn2/2.3.0) libssh/0.10.4/openssl/zlib nghttp2/1.43.0 Release-Date: 2021-04-14 Protocols: dict file ftp ftps gopher gophers http https imap imaps ldap ldaps mqtt pop3 pop3s rtsp scp sftp smb……

Rust基本使用

install rust 1 curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh or 1 2 3 export RUSTUP_DIST_SERVER="https://rsproxy.cn" export RUSTUP_UPDATE_ROOT="https://rsproxy.cn/rustup" curl --proto '=https' --tlsv1.2 -sSf https://rsproxy.cn/rustup-init.sh | sh set registry 1 2 3 4 5 6 7 8 9 10 11 12 cat……

Dockerfile中的heredoc语法

Docker 的 BuildKit 工具现在支持 heredoc 语法,这一新特性可以简化 Dockerfile 中的多行 RUN 指令和内联配置文件的创建。 BuildKit……