From 1c3ceea69b1cba5412766146b17117f1934c6d20 Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Sun, 29 Mar 2020 13:38:08 +0200 Subject: [PATCH] Revert to using 8080 for all --- Dockerfile | 1 - ansible/post-deploy.yml | 3 +-- ansible/vars/all.yml | 1 - 3 files changed, 1 insertion(+), 4 deletions(-) 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"