Continuum - Nginx / SSL Received a Record that Exceeded the Maximum Permissible Length
Details
Trying to enable SSL on Continuum while using Nginx.
Error when connecting to the UI:
*SSL received a record that exceeded the maximum permissible length. (Error code: ssl_error_rx_record_too_long)*
Incorrect NGINX SSL Port Configuration:
listen 127.0.0.1:443;
Resolution
In order to resolve the Nginx config file will need to be modified. The correct text to add to the config file would be the following -
listen 443;
REMOVE - listen 127.0.0.1:443;
The IP address defaults to localhost and SSL should work without this error after modifying this line.