formation 5 anos atrás
pai
commit
ba2910e8cd
2 arquivos alterados com 2 adições e 2 exclusões
  1. 1 1
      build/docker/apache/Dockerfile
  2. 1 1
      build/docker/apache/apache.conf

+ 1 - 1
build/docker/apache/Dockerfile

@@ -12,7 +12,7 @@ RUN docker-php-ext-install opcache \
 COPY $PWD/build/docker/apache/app_php.ini /usr/local/etc/php/conf.d/app_php.ini
 COPY $PWD/build/docker/apache/apache.conf /etc/apache2/sites-available/foodgame.fr.conf
 
-#RUN a2dissite 000-default default-ssl
+RUN a2dissite 000-default default-ssl
 RUN a2ensite foodgame.fr
 
 WORKDIR /var/www/src/index.php

+ 1 - 1
build/docker/apache/apache.conf

@@ -1,7 +1,7 @@
 <VirtualHost *:80>
    DocumentRoot /var/www/html
    <Directory /var/www/html/>
-        options +Indexes +FollowSymlinks
+        Options +Indexes +FollowSymlinks
         AllowOverride All
    </Directory>
 </VirtualHost>