--- /dev/null
+instructions for configuring various aspects of the host
+
--- /dev/null
+/etc/apache2/apache2.conf needs in it:
+
+Include /etc/apache2/vservers
+
+You also need to be sure to only listen on the host interface in /etc/apache2/posts.conf otherwise apache won't be able to bind in the vservers. For some reason you can't bind apache to an interface. I keep meaning to add ifupdown rules on the host to change the bind address on the host for apache since the laptop changes its address all the time, but so far haven't gotten around to it.
+
+You also need to enable all the proxy modules on the host
+
+
+
--- /dev/null
+the only change i made to /etc/dnsmasq.conf was the include line you see in this patch.
+the dnsmasq-vservers.conf file should start out empty - this is just an example from my current running setup.
--- /dev/null
+address=/build.hermia/10.0.0.2
+address=/pg.hermia/10.0.0.4
+address=/web.hermia/10.0.0.3
+address=/moodle.hermia/10.0.0.5
+address=/mahara.hermia/10.0.0.6
--- /dev/null
+--- dnsmasq.conf.example 2008-08-29 13:07:55.000000000 +0100
++++ dnsmasq.conf 2008-08-29 13:03:12.000000000 +0100
+@@ -469,3 +469,7 @@
+ # Include a another lot of configuration options.
+ #conf-file=/etc/dnsmasq.more.conf
+ #conf-dir=/etc/dnsmasq.d
++#
++
++# configuration for vservers go here
++conf-file=/etc/dnsmasq-vservers.conf
--- /dev/null
+I have the following lines in /etc/network/interfaces:
+
+auto dummy0
+iface dummy0 inet static
+ address 10.0.0.1
+ netmask 255.255.255.0
+ up iptables -t nat -I POSTROUTING -s 10.0.0.0/24 -o eth0 -j MASQUERADE
+ down iptables -t nat -D POSTROUTING -s 10.0.0.0/24 -o eth0 -j MASQUERADE
+ up iptables -t nat -I POSTROUTING -s 10.0.0.0/24 -o wlan1 -j MASQUERADE
+ down iptables -t nat -D POSTROUTING -s 10.0.0.0/24 -o wlan1 -j MASQUERADE
+ up iptables -t nat -I POSTROUTING -s 10.0.0.0/24 -o wlan0 -j MASQUERADE
+ down iptables -t nat -D POSTROUTING -s 10.0.0.0/24 -o wlan0 -j MASQUERADE
--- /dev/null
+these live in /etc/resolvconf/resolv.conf.d/
--- /dev/null
+# Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)
+# DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
+nameserver 127.0.0.1
--- /dev/null
+nameserver 213.203.238.4