Explorar el Código

vhost conf apache

master
Florian Eisenmenger hace 2 años
padre
commit
2482f8b277
Se han modificado 1 ficheros con 4 adiciones y 4 borrados
  1. +4
    -4
      .docker/apache/vhost.conf

+ 4
- 4
.docker/apache/vhost.conf Ver fichero

@@ -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


Cargando…
Cancelar
Guardar