Files
docker-daloradius/apache/000-default.conf
Ryan Hamilton 89b75adcc0
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 2m6s
Refactor Dockerfile and add Apache virtual host configuration for daloradius
2025-08-12 09:18:42 -05:00

13 lines
350 B
Plaintext

<VirtualHost *:80>
ServerName localhost
DocumentRoot /var/www/html/daloradius
<Directory /var/www/html/daloradius>
Options -Indexes +FollowSymLinks
AllowOverride All
Require all granted
</Directory>
DirectoryIndex index.php
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>