diff options
Diffstat (limited to '2.4')
-rw-r--r-- | 2.4/Dockerfile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/2.4/Dockerfile b/2.4/Dockerfile index b57d230..9074b19 100644 --- a/2.4/Dockerfile +++ b/2.4/Dockerfile @@ -37,6 +37,7 @@ RUN set -ex; \ \ # Configure Apache sed -i -e "s|Listen .*|Listen 8080|" "/etc/apache2/httpd.conf"; \ + sed -i -e "s|CustomLog logs.*|CustomLog /proc/self/fd/1 combined|" "/etc/apache2/httpd.conf"; \ sed -i -e "s|ErrorLog logs.*|ErrorLog /proc/self/fd/2|" "/etc/apache2/httpd.conf"; \ sed -i -e "s|PidFile .*|PidFile /tmp/apache.pid|" "/etc/apache2/conf.d/mpm.conf"; \ \ |