Keep Server Online
If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.
or
A donation makes a contribution towards the costs, the time and effort that's going in this site and building.
Thank You! Steffen
Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
| |
|
Topic: Virtual Host |
|
Author |
|
svfusion
Joined: 12 Oct 2007 Posts: 5
|
Posted: Fri 12 Oct '07 15:56 Post subject: Virtual Host |
|
|
I am trying to host two websites on the same apache server. Is this the right conf?
NameVirtualHost 68.209.199.83
<VirtualHost 192.168.0.140>
ServerName www.fusionlan.com
DocumentRoot /www/fusionlan
</VirtualHost>
<VirtualHost 192.168.0.140>
ServerName www.gibsonl33tz.com
DocumentRoot /www/gibsonl33tz
</VirtualHost>
Thanks! |
|
Back to top |
|
James Blond Moderator
Joined: 19 Jan 2006 Posts: 7371 Location: Germany, Next to Hamburg
|
Posted: Wed 31 Oct '07 11:03 Post subject: |
|
|
it won't work to mix external and internal IPs.
For more working examples please see
http://httpd.apache.org/docs/2.2/en/vhosts/examples.html
You should use name based vhosts.
e.g. (do not remove the * from the examples and do not replace them
Code: |
NameVirtualHost *:80
<VirtualHost *:80>
ServerName www.fusionlan.com
ServerAlias fusionlan.com *.fusionlan.com
DocumentRoot /www/fusionlan
</VirtualHost>
<VirtualHost *:80>
ServerName www.gibsonl33tz.com
DocumentRoot /www/gibsonl33tz
</VirtualHost>
|
In this example there must be a DNS server |
|
Back to top |
|
|
|
|
|
|