Skip to content
Advertisement

Nginx reverse proxy for Nodejs server SSL_ERROR_RX_RECORD_TOO_LONG

I’m using AWS Beanstalk to configure a multicontainer docker environment to both serve my PHP Docker Application parallel to my NodeJS Server, running on port 3000.

I have a running Express Server, listening on port 3000. I now want to be able to call my NodeJS server at https://nodejs.my-domain.com:3000. Nginx should now terminate the SSL connection and forward all traffix to my NodeJS Express server.

So far I can successfully reach my PHP Application both with and without https. I can also reach my NodeJS Application without SSL at http://nodejs.my-domain.com:3000. But as soon as I call it with https I get the Broser Error SSL_ERROR_RX_RECORD_TOO_LONG.

Nginx config file looks like this:

JavaScript

I’m not sure which logs I have to pay attention to. Here is some output of various log files:

My access.log looks like this:

JavaScript

And in my error.log I found the following:

JavaScript

It also looks like there is something wrong with my healthd loggin config. There are many entries like this in my healthd/deamon.log:

JavaScript

Advertisement

Answer

I found a solution to my problem. There were two things I was missing:

  1. I am using a multi container docker environment with Nginx and Nodejs both running within their own container. In order for Nginx to be able to reach my Nodejs server I had to create a link between Nginx and Nodejs. But in my configuration file I configured the link within the Nodejs section instead of the Nginx section. I now added "links": ["node"] to the Nginx section within my Dockerrun.aws.conf which now looks like this:
JavaScript
  1. Further more instead of setting the upstream within my Nginx config to 127.0.0.1:3000 I had to do the upstream to my Nodejs docker container, which I named node: server node:3000. So my /var/nginx/conf.d/default.conf now looks like this:
JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement