Quellcode durchsuchen

vhost conf apache

master
Florian Eisenmenger vor 2 Jahren
Ursprung
Commit
2482f8b277
1 geänderte Dateien mit 4 neuen und 4 gelöschten Zeilen
  1. +4
    -4
      .docker/apache/vhost.conf

+ 4
- 4
.docker/apache/vhost.conf Datei anzeigen

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


Laden…
Abbrechen
Speichern