Apache Server Configuration
The server is configured to operate two new virtual hosts; a low priority host
that does not support persistent HTTP1.1 connections, and a high priority host
that does.
<VirtualHost *:80>
ServerName "Low"
ServerAlias *
KeepAlive Off
</VirtualHost>
<VirtualHost *:80>
ServerName "High"
KeepAlive On
KeepAliveTimeOut 0
MaxKeepAliveRequests 0
</VirtualHost>