Files
silaras-rssa/docker/apache.conf
T
2026-05-13 08:55:17 +07:00

18 lines
406 B
ApacheConf

<VirtualHost *:80>
ServerName localhost
DocumentRoot /var/www/html/public
<Directory /var/www/html/public>
Options FollowSymLinks
AllowOverride All
Require all granted
</Directory>
<Directory /var/www/html>
Require all denied
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>