diff options
-rw-r--r-- | 2.4/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/2.4/Dockerfile b/2.4/Dockerfile index 9074b19..23cea7e 100644 --- a/2.4/Dockerfile +++ b/2.4/Dockerfile @@ -52,7 +52,7 @@ RUN set -ex; \ mkdir -p "/tmp/conf/sites-enabled"; \ ln -s ../sites-available/default.conf "/tmp/conf/sites-enabled"; \ for i in $modules; do \ - if [ -f /etc/apache2/conf-available/${i}.conf ]; then \ + if [ -f /tmp/conf/conf-available/${i}.conf ]; then \ ln -s ../conf-available/${i}.conf "/tmp/conf/conf-enabled"; \ fi; \ done; \ |