nginx 配置证书后Chrome浏览器报错ERR_SSL_KEY_USAGE_INCOMPATIBLE,但是使用curl命令是好用的。

报错如下图:

nginx 配置证书后Chrome浏览器报错ERR_SSL_KEY_USAGE_INCOMPATIBLE,但是使用curl命令是好用的。_第1张图片

解决方案一:

删除/etx/nginx/nginx.conf的一行协议配置如下图

ssl_protocols TLSv1 TLSv1.1 TLSv1.2 TLSv1.3; # Dropping SSLv3, ref: POODLE
ssl_prefer_server_ciphers on;

解决方案二:

参考链接:ssl certificate - ERR_SSL_KEY_USAGE_INCOMPATIBLE Solution - Super Usericon-default.png?t=M276https://superuser.com/questions/1451895/err-ssl-key-usage-incompatible-solution

你可能感兴趣的:(nginx,nginx,ssl,https)