# DO NOT EDIT THIS VHOST. IT WILL BE MODIFIED BY SCRIPTS. (The includes for access limits and ServerAliases)
<VirtualHost *:80>
    <Directory [basedir]>
       AllowOverride All
       Options FollowSymLinks
       # Uncommenting below will only allow a limited number of Bellcom IPs access to the site
       #Include /etc/apache2/limit-bellcom.conf
       # Below blocks access without auth if the domain ends with bellcom.dk
       #Include /etc/apache2/limit-subsite-access.conf
    </Directory>

    ServerAdmin domains@bellcom.dk
    DocumentRoot [basedir]/public_html
    ServerName [domain]

    CustomLog [basedir]/logs/[domain]/access.log combined
    ErrorLog [basedir]/logs/[domain]/error.log

    php_admin_value open_basedir [basedir]:/usr/share/php
    php_value include_path .:[basedir]

    php_value log_errors 1
    php_value html_errors 0
    php_value display_errors 0
    php_admin_value error_reporting 2047
    php_value error_log [basedir]/logs/[domain]/php.log

    php_value session.save_path [basedir]/sessions/[domain]
    php_admin_value upload_tmp_dir [basedir]/tmp/[domain]
</VirtualHost>
