cmc-sales/conf/apache-vhost.conf

13 lines
291 B
Plaintext
Raw Normal View History

2019-01-26 00:05:51 -08:00
NameVirtualHost *:80
<VirtualHost *:80>
DocumentRoot /var/www/cmc-sales/app/webroot
# 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
2019-01-26 00:05:51 -08:00
</VirtualHost>