11

I am running Ubuntu 11.04, I have setup my localhost so I access my sites at

site1.local  
site2.local  

By setting up virtual hosts and adding entries to my hosts file.

I want to test them in IE so I have installed VirtualBox with Windows.

My question is, How can I access site1.local from the virtual machine?

Hailwood
  • 5,017

1 Answers1

15

Ah, It's as easy as pie.

In your windows Virtual Machine edit your hosts file

c:\WINDOWS\system32\drivers\etc\hosts

And link your virtual hosts to 10.0.2.2, If you are just using localhost then replace

127.0.0.1 localhost with 10.0.2.2 localhost

So my hosts file looks like

10.0.2.2 localhost
10.0.2.2 site1.local
10.0.2.2 site2.local

Hailwood
  • 5,017