views:

77

answers:

0

Apache 2.2 set up on Windows Vista

When I go to localhost in my browser I get the "It works!" page, so I'm pretty sure it installed just fine

Problem is when I go to a VirtualHost that I've set up (ex. tryout.localhost) it still goes to the "It works!" page instead of going to the files specified in the DocumentRoot of the virtual host

httpd.conf file looks like this:

<VirtualHost *:80>
ServerAdmin [email protected]
DocumentRoot "C:\Users\ken\Documents\WORK\test\public_html"
ServerName tryout.localhost
ErrorLog logs/dummy-host.example.com-error_log
CustomLog logs/dummy-host.example.com-access_log common</VirtualHost>

and I have added 127.0.0.1 tryout.localhost to my hosts file

Can anybody tell me what I'm missing?