Nginx HTTP not redirecting to HTTPS 400 Bad Request “The plain HTTP request was sent to HTTPS port”

十年热恋 提交于 2019-12-07 10:54:32

问题


I'm running nginx in docker. HTTPS works fine but when I explicitly make HTTP request I get the following error

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

nginx.conf is as follows

worker_processes auto ;          
events {}

http {

include /etc/nginx/mime.types;

access_log /var/log/nginx/main.access.log;                                           

server {    
listen 80;                                                                                                       
location / {
    return 301 https://localhost:3000$request_uri; 
}

}

server {   
listen 443 ssl;                                                      
server_name  localhost:3000;                  
 root    /var/www/html; 

ssl_certificate         /etc/nginx/ssl/cert.pem; 
ssl_certificate_key     /etc/nginx/ssl/key.pem;

ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_prefer_server_ciphers on;
ssl_ciphers ECDH+AESGCM:ECDH+AES256:ECDH+AES128:DH+3DES:!ADH:!AECDH:!MD5;

location / {
try_files  $uri /index.html;        
}

}

}

I run this container using

docker run -p 3000:443 -it -d --name nginxtest nginx-test

and get the following error

docker file is as follows

FROM nginx:latest
COPY ./build /var/www/html
COPY ./nginx.conf /etc/nginx/nginx.conf
COPY ./ssl /etc/nginx/ssl
EXPOSE 443
CMD [ "nginx","-g","daemon off;" ]

Weird thing is that sometimes it works perfectly fine, and all of a sudden it stops working and won't even work if I recreate the containers.

Even tried doing the following. Still no luck

 server {    
    listen 80;                                                                                                       
     server_name localhost:3000
        return 301 https://localhost:3000$request_uri; 
    }

Another odd thing when I run the following docker command

docker run -p 3000:443 -p 3001:80 -it -d --name nginxtest nginx-test

and go to localhost:3001 it redirects me to https just fine but other things do break. Sorry for the long question


回答1:


Put the following directive to the server block where you listen for port 443.

error_page 497 https://$host:$server_port$request_uri;

This directive implies that when "The plain HTTP request was sent to HTTPS port" happens, redirect it to https version of current hostname, port and URI.

Kinda hacky but works.



来源:https://stackoverflow.com/questions/55027582/nginx-http-not-redirecting-to-https-400-bad-request-the-plain-http-request-was

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!