<VirtualHost *:80>
    ServerName schedule.test
    ServerAlias www.schedule.test
    
    DocumentRoot /var/www/schedule/public
    
    <Directory /var/www/schedule/public>
        Options Indexes FollowSymLinks
        AllowOverride All
        Require all granted
    </Directory>
    
    ErrorLog ${APACHE_LOG_DIR}/schedule-error.log
    CustomLog ${APACHE_LOG_DIR}/schedule-access.log combined
</VirtualHost>
