且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

从.net core 2.2迁移到.net core 3.1的控制台APP停止了允许外部HTTP调用

更新时间:2023-09-21 10:06:16

您可以尝试将TLS降级从1.2到1.0的版本,方法是将此行添加到Dockerfile中(运行时映像)

You can try downgrading the TLS version from 1.2 to 1.0 by adding this line into your Dockerfile (runtime image)

RUN sed -i "s|TLSv1.2|TLSv1.0|g" /etc/ssl/openssl.cnf