diff --git a/Dockerfile b/Dockerfile index fe5e551..6da72d0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,5 @@ FROM jboss/keycloak:9.0.2 EXPOSE 8080 -EXPOSE 8443 COPY . ${WORKDIR} diff --git a/ansible/post-deploy.yml b/ansible/post-deploy.yml index 91abc3e..e154799 100644 --- a/ansible/post-deploy.yml +++ b/ansible/post-deploy.yml @@ -37,12 +37,11 @@ app: keycloak mappings: - "http:{{ http_port }}:{{ http_port }}" - - "https:{{ https_port }}:{{ https_port }}" state: absent - name: Set HTTP 443 port dokku_ports: app: keycloak mappings: - - "https:443:{{ https_port }}" + - "https:443:{{ http_port }}" state: present diff --git a/ansible/vars/all.yml b/ansible/vars/all.yml index cd2018e..e49685b 100644 --- a/ansible/vars/all.yml +++ b/ansible/vars/all.yml @@ -2,5 +2,4 @@ autonomic_admin_mail: helo@autonomic.zone autonomic_admin_user: autonomic http_port: "8080" -https_port: "8443" proxy_address_forwarding: "true"