This commit is contained in:
howard
2023-04-06 10:13:21 +02:00
commit 132b735d79
35 changed files with 2328 additions and 0 deletions

17
vhost.conf Normal file
View File

@@ -0,0 +1,17 @@
# File: .docker/apache/vhost.conf
LoadModule headers_module /usr/lib/apache2/modules/mod_headers.so
<VirtualHost *:80>
ServerName localhost
DocumentRoot /app
<Directory "/app">
Options Indexes FollowSymLinks Includes execCGI
AllowOverride All
Require all granted
allow from all
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>