I am using the below command to run keycloak on EC2 instance for testing purposes,
sudo docker run -d -p 8000:8080 -e KC_BOOTSTRAP_ADMIN_USERNAME=admin -e KC_BOOTSTRAP_ADMIN_PASSWORD=admin -e KC_HTTPS_PROTOCOLS=TLSv1.3,TLSv1.2 -e KC_HOSTNAME_STRICT_HTTPS=false -e KC_HTTP_ENABLED=true quay.io/keycloak/keycloak:26.0.7 start-dev
And to use google and microsoft IDP I don’t have https redirect url in the IDP settings, I have http://<server-ip>:8000/realms/DocsBot/broker/google/endpoint. And I am not able to edit the redirect url in the identity provider settings.
How to configure the keycloak to get https url, that I can use for google Oauth?