two domains two servers one dynamic ip address

Posted by giantman on Server Fault See other posts from Server Fault or by giantman
Published on 2010-03-13T00:43:12Z Indexed on 2010/03/13 0:47 UTC
Read the original article Hit count: 554

Filed under:

as i said i have 2 domain hi.org and bye.net and one dynamic ip address and two servers. i want to attach one domain bye.net to server1 and hi.org to server2. using apache wamp 2.0i. i hope someone will be able to answer.


`

httpd.conf file additions

ProxyRequests Off

Order deny,allow Allow from all

vhost file additions

NameVirtualHost *:80

default

DocumentRoot "c:/wamp/www/fallback"

Server 1

DocumentRoot "c:/wamp/www" ServerName h**p://bye.net ServerAlias bye.net

Server 2

ProxyPreserveHost On ProxyPass / h*p://192.168.1.119/ DocumentRoot "g:/wamp/www" ServerName h*p://hi.org ServerAlias hi.org

`


after doing all this i fallback to server1 only i don't get the page hi.org i only get the page bye.net, i don't even get the default fallback page which gets executed when a person enters ip address but not the domain name.

i use windows 7 (server2) and windows xp (server 1)

© Server Fault or respective owner

Two domains, two servers, one dynamic IP address

Posted by giantman on Super User See other posts from Super User or by giantman
Published on 2010-03-13T00:43:12Z Indexed on 2010/03/13 9:45 UTC
Read the original article Hit count: 554

Filed under:
|

I have two domains hi.org and bye.net and one dynamic IP address and two servers. I want to attach one domain bye.net to server1 and hi.org to server2. I'm using Apache wamp 2.0i.

I have two servers behind one router with a dynamic IP address

#httpd.conf file additions

<IfModule mod_proxy.c>
ProxyRequests Off

<Proxy *>
Order deny,allow
Allow from all
</Proxy>

</IfModule>


#vhost file additions
NameVirtualHost *:80

#default
<VirtualHost *:80>
DocumentRoot "c:/wamp/www/fallback"
</VirtualHost>


# Server 1
<VirtualHost *:80>
DocumentRoot "c:/wamp/www"
ServerName h**p://bye.net
ServerAlias bye.net
</VirtualHost>


# Server 2
<VirtualHost *:80>
ProxyPreserveHost On
ProxyPass / h**p://192.168.1.119/
DocumentRoot "g:/wamp/www"
ServerName h**p://hi.org
ServerAlias hi.org 
</VirtualHost>

After doing all this I fallback to server1 only I don't get the page hi.org I only get the page bye.net, I don't even get the default fallback page which gets executed when a person enters IP address but not the domain name.

I use Windows 7 (server 2) and Windows XP (server 1)

UPDATE:

I needed to remove DocumentRoot "g:/wamp/www" line :D it was there by mistake! things are working fine now.

But one thing: the URL gets replaced by the local ip address any way to not make that happen?

© Super User or respective owner

Related posts about apache