Files
davisfe.cz/vhost.conf
fencl de3b49b9b7
All checks were successful
continuous-integration/drone/push Build is passing
Comment out saveData.php copy command in Dockerfile and add vhost.conf for Apache configuration
2025-09-01 20:37:05 +02:00

18 lines
451 B
Plaintext

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