|
Home > Archive > Apache Server configuration support > December 2005 > unexpected hosting results
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
unexpected hosting results
|
|
| youcantoo 2005-12-28, 7:55 am |
| Hi all,
Got a problem that makes no sense to me. Am running Apache 2.0.54 on
PCLinuxOS - Sempron 2800 - 512 meg memory. The problem shows up when
trying to got any virtual host on the machine. for example
http://linuxguy.ws works as expected
http://musicmax.linuxguy.ws works as expected
http://lbcclug.org does not it shows the same as linuxguy.ws
here is a snipit of my httpd.conf file
<VirtualHost 69.33.241.60>
DocumentRoot /home/linuxguy
ServerName linuxguy.ws
ServerAlias www.linuxguy.ws
ServerAdmin dmwoar@findmoore.net
<Directory "/home/linuxguy">
Order Allow,Deny
allow from all
Options +Indexes
</Directory>
Options FollowSymLinks Includes
<Directory "/home/linuxguy/musicmax">
Options FollowSymLinks Includes
</Directory>
</VirtualHost>
<VirtualHost 69.33.241.60>
DocumentRoot /home/linuxguy/musicmax
ServerName musicmax.linuxguy.ws
<Directory "/home/linuxguy/musicmax">
allow from all
Options ExecCGI FollowSymLinks Indexes
</Directory>
</VirtualHost>
<VirtualHost 69.33.241.60>
DocumentRoot /home/lbcclug
ServerName lbcclug.com
ServerAlias www.lbcclug.com
<Directory "/home/lbcclug">
allow from all
Options FollowSymLinks +Indexes
</Directory>
</VirtualHost>
A dig of lbcclug showes
; <<>> DiG 9.3.1 <<>> lbcclug.org
;; global options: printcmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 8134
;; flags: qr aa rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 2, ADDITIONAL: 0
;; QUESTION SECTION:
;lbcclug.org. IN A
;; ANSWER SECTION:
lbcclug.org. 38400 IN A 69.33.241.60
;; AUTHORITY SECTION:
lbcclug.org. 38400 IN NS ns1.findmoore.com.
lbcclug.org. 38400 IN NS ns0.findmoore.com.
;; Query time: 2 msec
;; SERVER: 69.33.241.50#53(69.33.241.50)
;; WHEN: Tue Dec 27 20:12:21 2005
;; MSG SIZE rcvd: 94
That is all correct. Show can anyone turn me in the right direction.
Why is it that the lbcclug.org keeps going to the linuxguy.ws webpage ?
Yes I have restarted the webserver and DNS. This is the second webserver
I have setup. The first one has about 25 domains on it and is working as
expected. The only difference that I can see is it is running Apache
2.0.53. Could this be caused by the different version of Apache ?
| |
|
| youcantoo wrote:
> Hi all,
> http://lbcclug.org does not it shows the same as linuxguy.ws
>
--snip--
> ServerName lbcclug.com
> ServerAlias www.lbcclug.com
Is it .com or .org? Typos can be notoriously hard to spot if one has
been staring at ones own conf-files for too long..
| |
| youcantoo 2005-12-28, 9:01 pm |
| Anna wrote:
> youcantoo wrote:
>
>
>
> --snip--
>
>
>
> Is it .com or .org? Typos can be notoriously hard to spot if one has
> been staring at ones own conf-files for too long..
I have both .com and .org
|
|
|
|
|