SSL on the elastic beanstalk

I followed almost all the steps to get SSL on Elastic Beanstalk, but I was stuck in the last step.

What I've done:

1) Get a domain name in GoDaddy → that works

2) Redirect DNS using Route53 (using A, Aliast - target, which is my EB environment) -> which works

Then:

3) Create an SSL certificate with AWS Certificate Manager for example.com and * .example.com →, which works

4) Go to my EB environment and change the protocol to HTTPS as described here: http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/using-features.managing.elb.html

Problem: The Network Layer panel does not appear on my console (see screenshot): Network image level is missing

What am I missing? Why can't I see Network Tier? Is this a way to make example.com accessible via HTTPS (knowing that example.com points to my EB load balancer)?

Note. My application works with nginx + Node.js. The nginx configuration file is located in the .ebextensions folder

+5
source share
1 answer

I found an alternative solution, although I still don’t know why I don’t see the Network Layer panel.

Received on EC2 → Load Balancing → Load Balancers Click on the load balancer that matches your elastic Beanstalk environment, go to the “Listeners” tab → “Add listener” → Select HTTPS, then follow the on-screen instructions.

Hope this helps!

Nb: if you have an idea that the Network Layer panel is not available, I will be glad to hear from you!

+7
source

Source: https://habr.com/ru/post/1263540/


All Articles