Can any one help me Make a virtual host in Apache?

i3rYs0n

Golden Member
Dec 9, 2001
1,525
0
0
Alrighty, i need a virtual host for my chat room on my web page. You can view it here. Click launch chat and then read the bottom.

If anyone can coach me through making one of these i would be very greatful. I have tried to read the apache documentation on virtual host, but my reading level of comperhension is not as good as who writes that stuff.

HELP! PLS!
Bryson
 

i3rYs0n

Golden Member
Dec 9, 2001
1,525
0
0
Virtual Host aka Virtual Directory. Mine doesn't work, anyone know how to?
 

kt

Diamond Member
Apr 1, 2000
6,032
1,348
136
This is the format for creating a virtual host in Apache. Open up httpd.conf file for edit, add the following:

<VirtualHost YOUR IP ADDRESS HERE>
ServerAdmin webmaster@domain.com
ServerName www.domain.com
ServerAlias domain.com
DocumentRoot "/your/web/path"
</VirtualHost>

The above is very stripped down.