Files
php_assessment_1/docker/apache.conf
T

13 lines
336 B
ApacheConf
Raw Normal View History

2025-02-10 03:04:50 +01:00
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html
<Directory /var/www/html>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>