<VirtualHost *:80>
        ServerAdmin $admin_mail

$server_name_alias
        DocumentRoot /var/www/${site_url}

$rewrite_cond

        <Directory />
                Options Indexes FollowSymLinks MultiViews
                AllowOverride All
                Order allow,deny
                allow from all
        </Directory>

        #PHP log
        php_flag log_errors on
        php_value error_log /var/www/${site_url}/logs/${site_url}_php_error.log

        #Client apache log
        ErrorLog /var/www/${site_url}/logs/${site_url}_error.log
        CustomLog /var/www/${site_url}/logs/${site_url}_access.log combined

        #Server apache log
        ErrorLog /var/log/apache2/error.log
        CustomLog /var/log/apache2/access.log combined

        # Possible values include: debug, info, notice, warn, error, crit,
        # alert, emerg.
        LogLevel warn
</VirtualHost>
