cmc-sales/conf/apache-vhost.conf

17 lines
399 B
Plaintext
Raw Permalink Normal View History

2025-08-11 00:44:22 -07:00
<VirtualHost *:80>
2019-01-26 00:05:51 -08:00
DocumentRoot /var/www/cmc-sales/app/webroot
2025-08-09 23:55:02 -07:00
2025-11-19 06:04:54 -08:00
<Directory /var/www/cmc-sales/app/webroot>
Options FollowSymLinks
AllowOverride All
Require all granted
</Directory>
# Send Apache logs to stdout/stderr for Docker
ErrorLog /dev/stderr
CustomLog /dev/stdout combined
# Ensure PHP errors are also logged
php_flag log_errors on
php_value error_log /dev/stderr
2025-08-11 00:44:22 -07:00
</VirtualHost>