Enable mod_ssl by default

This commit is contained in:
Marcin Szymanski 2017-09-17 14:42:29 +01:00
parent 37250cbde3
commit fb3230845d

View File

@ -28,6 +28,9 @@ COPY ./docker/apache2.conf /etc/apache2/apache2.conf
# Enable apache mod rewrite..
RUN a2enmod rewrite
# Enable apache mod ssl..
RUN a2enmod ssl
# Setup the Composer installer
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer