diff --git a/.env b/.env index 0c6a6e491..4d483c680 100644 --- a/.env +++ b/.env @@ -1,6 +1,3 @@ -REVERSE_PROXY_HOST_PORT_HTTP=8080 -REVERSE_PROXY_HOST_PORT_HTTPS= - ARCHIVAL_APPLICATION_INSIGHTS_SERVER_TELEMETRY_CHANNEL_STORAGE_PATH=application-insights ARCHIVAL_GIT_REPOSITORY_PATH=archives diff --git a/docker-compose.override.yml b/docker-compose.override.yml index 58e4410e4..e8f3349cc 100644 --- a/docker-compose.override.yml +++ b/docker-compose.override.yml @@ -5,7 +5,7 @@ version: "3.7" services: reverse-proxy: ports: - - "${REVERSE_PROXY_HOST_PORT_HTTP}:80" + - "8080:80" volumes: - ./reverse-proxy/conf.d.dev:/etc/nginx/conf.d:ro command: ["nginx-debug", "-g", "daemon off;"] diff --git a/docker-compose.prod.yml b/docker-compose.prod.yml index 4e9bffecc..ff960b58b 100644 --- a/docker-compose.prod.yml +++ b/docker-compose.prod.yml @@ -5,7 +5,7 @@ version: "3.7" services: reverse-proxy: ports: - - "${REVERSE_PROXY_HOST_PORT_HTTPS}:443" + - "443:443" depends_on: - web volumes: