formation il y a 5 ans
Parent
commit
56a48759de
2 fichiers modifiés avec 4 ajouts et 4 suppressions
  1. 2 2
      build/docker/apache/Dockerfile
  2. 2 2
      build/docker/apache/apache.conf

+ 2 - 2
build/docker/apache/Dockerfile

@@ -16,8 +16,8 @@ RUN a2dissite foodgame.fr foodgame.fr-ssl
 RUN a2ensite foodgame.fr
 RUN a2enmod ssl
 
-COPY $PWD /var/www/index.html
-WORKDIR /var/www/index.html
+#COPY $PWD /var/www/index.html
+WORKDIR /src
 
 
 EXPOSE 80

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

@@ -1,6 +1,6 @@
 <VirtualHost *:80>
-   DocumentRoot /app
-   <Directory /app/>
+   DocumentRoot /src
+   <Directory /src/>
         Options +Indexes +FollowSymlinks
         AllowOverride All
    </Directory>