Website won't come up, but i get the "Welcome apache" page

rszkutak

Verified User
Joined
Dec 22, 2003
Messages
173
Location
Scottsdale, AZ & Clam Gulch, AK
I'm sure this is a no brainer, but i'm sad to report that i'm a bit baffled where to go and fix it.

I have a client, who i initally setup as a shared ip, and recently moved to a static IP. The DNS updated properly, and is showing correct. The designers have uploaded a webpage, however it does not display at all, you only get the apache page.

http://www.sequoiamedicalbilling.com/index.html

The URL is listed above, what happened here and how do i correct this problem ?

Sorry for my "lack o knowledge" i've been stuck in bill gates hell for the past couple years and my *nix skills are starting to suffer.

Thanks!
 
This is a case of (most likely) the ip in the zone file not matching that of the ip in the httpd.conf file for that user.
 
Last edited:
Floyd is correct. Set your domain to the server's IP in httpd.conf of the domain's user
 
thank you for your response to this, i appreciate it. I noticed that i had 2 sites that had this problem. I was able to resolve 1 of the sites problems with the httpd.conf change, the other one was correct.

Basically the site i am having challanges with is sequoiamedicalbilling.com, which is using a static IP address of 75.126.220.101. I verified that the httpd.conf file in this users folder is accurate, and looks correct.

I modified the other site that i had problems with first and that went smoothly, however this one isnt' playing nicely. Any other things i can look at ? DNS records are correct, and clean.

Help ???

Many thanks!
 
sequoiamedicalbilling.com, which is using a static IP address of 75.126.220.101

Yet DNS is reporting something different.

Code:
[root@server]# dig sequoiamedicalbilling.com

; <<>> DiG 9.3.3rc2 <<>> sequoiamedicalbilling.com
;; global options:  printcmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 34746
;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 0

;; QUESTION SECTION:
;sequoiamedicalbilling.com.     IN      A

;; ANSWER SECTION:
sequoiamedicalbilling.com. 3583 IN      A       75.126.220.96

;; Query time: 56 msec
;; SERVER: 208.67.222.222#53(208.67.222.222)
;; WHEN: Thu Oct 16 12:41:19 2008
;; MSG SIZE  rcvd: 59

See previous post.
 
Back
Top