I create an elastic beanstalk application but I can't find how to set it for https requests and how to add an ssl certificate. The configuration is without load balancer.
Someone could help? I'm all day on this.
You didn't provide a ton of information, but it looks like they have a doc on how to terminate SSL in a Single Instance environment, which is what you say you have.
ie- They say the below and then link to this.
You can use configuration files to configure the proxy server that passes traffic to your application to terminate HTTPS connections. This is useful if you want to use HTTPS with a single instance environment
Single-instance EB environments don't have any load balancer. Thus you have to provide SSL certificates directly on your EB instance.
You have two options:
client----HTTPS (ACM SSL cert)---->CF----HTTP---->EB
As you see, between CF and your EB instance you will have HTTP traffic, which may be not desired. To fix that you can't use self-signed certificates nor ACM cert. You need a public ssl certificate from a third party, such as free https://letsencrypt.org/.
This brings us to the second option:
Using this option you would have:
client----HTTPS (third party SSL cert)---->EB