NameVirtualHost *:%(port_number)s
Listen 127.0.0.1:%(port_number)s

<VirtualHost *:%(port_number)s>
    ServerName %(website_name)s
    DocumentRoot %(vhost_path)s
    ServerAdmin %(admin_email)s

    LogLevel warn
    CustomLog %(log_path)s/apache_access.log combined
    ErrorLog %(log_path)s/apache_error.log

    WSGIDaemonProcess %(project_name_prefix)s%(project_name)s user=%(project_user)s group=%(project_user)s threads=20 processes=2
    WSGIProcessGroup %(project_name_prefix)s%(project_name)s
    WSGIScriptAlias / %(vhost_path)s/django.wsgi
</VirtualHost>
