nginx: 400 Bad Request | The plain HTTP request was sent to HTTPS port

nginx版本1.0.4 

nginx一般情况下配置;

server {
    listen 443;
    server_name localhost;
    ssl on;
    root html;
    index index.html index.htm;
    ssl_certificate   cert/214525134250577.pem;
    ssl_certificate_key  cert/214525134250577.key;
    ssl_session_timeout 5m;
    ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4;
    ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
    ssl_prefer_server_ciphers on;
    location / {
        root html;
        index index.html index.htm;
    }
}

 

然后神奇的一幕发生了,首先是: nginx: [warn] invalid value "TLSv1.1"  nginx: [warn] invalid value "TLSv1.2"

把 TLSv1.1 TLSv1.2 删掉;报错  nginx: 400 Bad Request | The plain HTTP request was sent to HTTPS port

nginx: 400 Bad Request | The plain HTTP request was sent to HTTPS port

 

 参考官方文档解决如下:

server {
    listen 80;
    server_name localhost;
    root html;
    index index.html index.htm;
   
    
    listen 443 ssl;  #注意这里
    #ssl on;
    ssl_certificate      cert/214525134250577.pem;
    ssl_certificate_key  cert/214525134250577.key;
    ssl_session_timeout 5m;
    ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4;
    ssl_protocols TLSv1;
    ssl_prefer_server_ciphers on;

    location / {
        root html;
        index index.html index.htm;
    }
}

 

删掉 ssl on; 并在 listen 443; 后面加上ssl即可 

nginx官方文档

 

相关文章:

  • 2021-04-09
  • 2021-10-06
  • 2021-07-14
  • 2021-12-24
  • 2022-01-01
猜你喜欢
  • 2021-07-26
  • 2022-01-28
  • 2021-05-20
  • 2021-06-18
  • 2021-07-01
  • 2022-12-23
  • 2021-12-05
相关资源
相似解决方案