In my quest for the best home solution I decided to change my Microsoft environment (2008, Exchange 2007) server to a new Atom based system running Debian.
The first problem I ran into, was not being able to do any Linux installation at all…turned out I had to upgrade the bios (latest version can be found at Intel site).
Second problem…as I had to use USB to install the system: how was I to make a working bootable USB drive. Turned out that on the sourceforge site there is something called UNetbootin. Search no further, this tool works perfectly and I’m going to use it a lot !
Now I’m looking at a great D510MO based running system.
The situation:
At home I’m running a Windows 2008 server (Exchange 2007 and mostly file sharing) that is also hosting two virtualized Debian environments: webserver and mail server.
As all HTTP trafic is serviced by the Debian machine, I had to figure out a way to forward all the traffic for www.elconsultancy.nl to this 2K8 machine (running IIS). Why…trying to make my first steps into the SilverLight world.
The solution:
As most stuff also this could be handled really easy by using the reverse proxy. Two steps to handle this:
1) Edit the Virtual Hosts file:
<VirtualHost 192.168.50.80:80>
ServerName www.elconsultancy.nl
ProxyRequests Off
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
ProxyPass / http://192.168.50.1/
ProxyPassReverse / http://192.168.50.1/
</VirtualHost>
2) Enable the proxy module:
a2enmod proxy_http
Yeah, it really is that easy !