I am running Oracle VirtualBox with Debian as guest OS on a Windows 7 host. I have installed Apache and specified the following two network adapters in VM:
- Bridge
- Host-only w/ the same IP set as below.
My interfaces network settings on the Debian VM are:
auto lo
iface lo inet loopback
allow-hotplug eth0
iface eth0 inet dhcp
auto eth1
iface eth1 inet static
address 192.168.1.110
netmask 255.255.255.0
which all seems to work well enough via ping test between guest and host. However, when I try to browse to my guest instance in a web browser http://192.168.1.110 I keep getting a 404 message. Any help would be appreciated.