Error code: ssl_error_rx_record_too_long
I have nginx with the following setup:
server {
listen 80;
server_name site.com www.site.com;
root /home/site/public_html;
listen 443;
#server_name site.com www.site.com;
#root /home/site/public_html;
ssl_certificate /root/site.pem;
ssl_certificate_key /root/site.key;
However, when I view the SSL connection I am getting:
An error occurred during a connection to grewpler.com.
SSL received a record that exceeded the maximum permissible length.
(Error code: ssl_error_rx_record_too_long)
I am using TrustWave Premium SSL
as the SSL cert authority.
Solution 1:
Solved. You need to add "ssl" to the end of the listen.
listen 443 ssl;
Solution 2:
This error I got in browser when trying to access site over SSL(https) but in fact on that port normal HTTP server was running.