Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Apache VirtualHost configuration for domain under nameserver bind9

Status
Not open for further replies.

VJar

Programmer
Aug 3, 2002
18
UA
I configured DNS (bind9) and Apache in FreeBSD 4.7 (IP: 192.168.1.1).
My server name on FreeBSD - myserver.mydomain.com
This server configuration:

1. /etc/resolv.conf
domain mydomain.com
nameserver 192.168.1.1

2. Bind config:
I have domain:
mydomain.com
This domain hosts:
server (192.168.1.1) - server and DNS-server (FreeBSD)
site1 (192.168.1.1)
site2 (192.168.1.1)
xpcomp (192.168.1.10)

3. Apache config (httpd.conf):

NameVirtualHost myserver.mydomain.com

<VirtualHost site1>
ServerName site1.mydomain.com
ServerAlias site1
DocumentRoot /usr/local/proj/site1/html
ErrorLog /usr/local/proj/site1/_log/error_log
CustomLog /usr/local/proj/site1/_log/access_log common
</VirtualHost>

FreeBSD is a Virtual Mashine (based on VMWare Workstation 4) under WinXP.
In Windows XP Lan config I wrote:
DNS -> 192.168.1.1.

My Computer settings:
Name: xpcomp
Workroup: MyWorkgroup
DNS suffix: mydomain.com

When I in browser load my local site with url I want, that
browser automatically to the end of base url addes domain name in bind config.
Examples:
-> ->
How can I make this think? What config i need to correct: apache, bind or
something another? (I can show my bind config files)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top