Tag Archives: NGINX

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

Problem When viewing any of my sites using port 80, the following error appeared on non-SSL websites: Nginx 400 Bad Request The plain HTTP request was sent to HTTPS port Original server block: server { listen 80; listen 443; ssl on; ssl_certificate /path/to/cert/example.pem; ssl_certificate_key /path/to/cert/example.private.key; root /path/to/wordpress; index index.php; # Website URL server_name blog.duaneleem.com; # […]