Parcourir la source

vhost conf apache

master
Florian Eisenmenger il y a 2 ans
Parent
révision
2482f8b277
1 fichiers modifiés avec 4 ajouts et 4 suppressions
  1. +4
    -4
      .docker/apache/vhost.conf

+ 4
- 4
.docker/apache/vhost.conf Voir le fichier

@@ -2,9 +2,9 @@ LoadModule headers_module /usr/lib/apache2/modules/mod_headers.so

<VirtualHost *:80>
ServerName localhost
DocumentRoot /app
DocumentRoot /var/www/html

<Directory "/app">
<Directory "/var/www/html">
Options Indexes FollowSymLinks Includes execCGI
AllowOverride All
Require all granted
@@ -17,7 +17,7 @@ LoadModule headers_module /usr/lib/apache2/modules/mod_headers.so

<VirtualHost _default_:443>

DocumentRoot "/app"
DocumentRoot "/var/www/html"
ServerName localhost:443
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
@@ -31,7 +31,7 @@ LoadModule headers_module /usr/lib/apache2/modules/mod_headers.so
SSLOptions +StdEnvVars
</FilesMatch>

<Directory "/app">
<Directory "/var/www/html">
Options Indexes FollowSymLinks Includes execCGI
AllowOverride All
Require all granted


Chargement…
Annuler
Enregistrer