cmc-sales/conf/apache-vhost.conf

11 lines
269 B
Plaintext
Raw 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
# 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>