From 7e860b019af1b1864a30a4c053e182c45fd277c9 Mon Sep 17 00:00:00 2001 From: "stephan.kasdorf" Date: Wed, 29 May 2024 16:25:46 +0200 Subject: [PATCH] Remove VIRTUAL_HOST environment variable from docker-compose file The VIRTUAL_HOST environment variable was removed from the docker-compose.yml file. This change was made to streamline the file and ensure only necessary configurations are present. The system's operation should not be affected as VIRTUAL_HOST is not essential for the process flow. --- docker-compose.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/docker-compose.yml b/docker-compose.yml index 2011aea..50df32d 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -13,6 +13,7 @@ services: nginx: image: nginx:latest environment: + - VIRTUAL_HOST=${VIRTUAL_HOST} - LETSENCRYPT_HOST=${LETSENCRYPT_HOST} - VIRTUAL_PORT=${VIRTUAL_PORT} volumes: