Files
LampDocker/apache/vhosts/example.conf
Antoni Nuñez Romeu ddda631033
Some checks failed
Deploy LAMP / Deploy LAMP (push) Failing after 32s
first commit
2026-04-13 17:13:52 +02:00

12 lines
329 B
Plaintext

<VirtualHost *:80>
ServerName example.local
DocumentRoot /var/www/html/example
<Directory /var/www/html/example>
AllowOverride All
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/example_error.log
CustomLog ${APACHE_LOG_DIR}/example_access.log combined
</VirtualHost>