Skip to content
This repository has been archived by the owner on Apr 29, 2024. It is now read-only.

Commit

Permalink
Merge branch 'hotfix/3.1.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoguido committed Mar 23, 2021
2 parents 734d4c8 + 7adfc80 commit c657fff
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docker/http/apache/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ COPY conf/virtualhosts.conf /usr/local/apache2/conf/extra/
# Make sure to load every virtual host file
ARG ENABLE_SSL=false
RUN echo "Include /usr/local/apache2/conf/config-override.conf" >> /usr/local/apache2/conf/httpd.conf \
&& mkdir -p /usr/local/apache2/conf/virtualhosts \
if [ ${ENABLE_SSL} = true ] ; then \
echo "Include /usr/local/apache2/conf/extra/ssl.conf" >> /usr/local/apache2/conf/httpd.conf \
;fi
&& mkdir -p /usr/local/apache2/conf/virtualhosts
RUN if [ ${ENABLE_SSL} = true ] ; then \
echo "Include /usr/local/apache2/conf/extra/ssl.conf" >> /usr/local/apache2/conf/httpd.conf \
;fi

# Define some user details and create a logging directory
RUN usermod -u 1000 www-data \
Expand Down

0 comments on commit c657fff

Please sign in to comment.