diff --git a/community-containers/caddy/caddy.json b/community-containers/caddy/caddy.json index 561c5219..2bd68e3a 100644 --- a/community-containers/caddy/caddy.json +++ b/community-containers/caddy/caddy.json @@ -38,7 +38,7 @@ } ], "aio_variables": [ - "apache_ip_binding=127.0.0.1", + "apache_ip_binding=@INTERNAL", "apache_port=11000" ], "nextcloud_exec_commands": [ diff --git a/php/containers.json b/php/containers.json index ffead0d8..1bf3bfd9 100644 --- a/php/containers.json +++ b/php/containers.json @@ -221,7 +221,6 @@ "DOCKER_SOCKET_PROXY_ENABLED=%DOCKER_SOCKET_PROXY_ENABLED%", "REMOVE_DISABLED_APPS=%REMOVE_DISABLED_APPS%", "APACHE_PORT=%APACHE_PORT%", - "APACHE_IP_BINDING=%APACHE_IP_BINDING%", "ADDITIONAL_TRUSTED_PROXY=%CADDY_IP_ADDRESS%", "THIS_IS_AIO=true", "IMAGINARY_SECRET=%IMAGINARY_SECRET%" diff --git a/php/src/Docker/DockerActionManager.php b/php/src/Docker/DockerActionManager.php index 57bcadc5..8b2e8a3e 100644 --- a/php/src/Docker/DockerActionManager.php +++ b/php/src/Docker/DockerActionManager.php @@ -295,8 +295,6 @@ class DockerActionManager $replacements[1] = $this->configurationManager->GetSelectedRestoreTime(); } elseif ($out[1] === 'APACHE_PORT') { $replacements[1] = $this->configurationManager->GetApachePort(); - } elseif ($out[1] === 'APACHE_IP_BINDING') { - $replacements[1] = $this->configurationManager->GetApacheIPBinding(); } elseif ($out[1] === 'TALK_PORT') { $replacements[1] = $this->configurationManager->GetTalkPort(); } elseif ($out[1] === 'NEXTCLOUD_MOUNT') {