I need to configure two name-based virtual hosts in my Ubuntu PC. If I type the address http://mypage1
in browser, it should display my first customized html page and if I type the address http://mypage2
, it should display my second customized html page. I tried out the following:
- installed apache
created a file
mypage1
insidesites-available
with the contents as follows:<VirtualHost *:80> ServerName mypage1 ServerAlias http://mypage1 DocumentRoot /var/www/mypage1/html </VirtualHost>
created a similar file
mypage2
insidesites-available
- ran the commands
a2ensite mypage1
anda2ensite mypage2
to generate soft links inside sites-enabled. - restarted apache using
sudo /etc/init.d/apache2 restart
After doing the above steps, when I type mypage1
in firefox, I get dns_unresolved_hostname error.
Kindly help me how to resolve this problem.