Files
thetempusproject/docker/apache.conf
2024-08-04 21:15:59 -04:00

12 lines
293 B
ApacheConf

ServerName localhost
<VirtualHost *:80>
ServerAdmin admin@localhost
DocumentRoot /var/www/html/
<Directory /var/www/html/>
DirectoryIndex index.php
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
</VirtualHost>