I deployed Keycloak on an EC2 server on AWS, generated and configured the SSL certificate through the AWS console on a Load Balancer that redirects to port 80 of the instance where the keycloak is located, which has a docker container communicating over port 8080.
The certificate worked perfectly, but when I try to log into the keycloak, the loading is infinite and the following message appears:
docker-compose.yml:
version: '3'
services:
keycloak:
image: quay.io/keycloak/keycloak:legacy
environment:
DB_VENDOR: POSTGRES
DB_ADDR: maydb-dev.rds.amazonaws.com
DB_DATABASE: keycloak
DB_USER: dbuser
DB_SCHEMA: public
DB_PASSWORD: password
KEYCLOAK_USER: admin
KEYCLOAK_PASSWORD: admin
ports:
- 80:8080
Any help is appreciated!
I tried using ports 443:8443 but it didn't work.