I am trying to setup a small DNS server to run my domain pacificx.net on.
I registered my domain named through GoDaddy and I have ns1.pacificx.net set to my servers IP. ns2.pacificx.net is not setup.
I am trying to follow TLDP HowTo.
http://www.tldp.org/HOWTO/text/DNS-HOWTO
When I got
www.pacificx.net it does not show anything. It just says page not found. What is wrong? here are my files:
/etc/named.conf
Code:
options {
directory "/var/named";
check-names master warn;
datasize 20M;
};
zone "pacificx.net" IN {
type master;
file "nex/pacificx.net";
allow-update { none; };
allow-transfer { any; };
};
/var/named/nex/pacificx.net
Code:
$TTL 600
; pacificx.net
@ IN SOA pacificx.net. brenden.pacificx.net. (
2005062601 ; serial
12h ; refresh
1h ; retry
2w ; expire
1h ; minimum
)
NS ns1.pacificx.net.
localhost IN A 127.0.0.1
www A 205.201.163.245
ns A 205.201.163.245
End of httpd.conf
Code:
<VirtualHost 205.201.163.245:80>
ServerAdmin brenden.wilson@gmail.com
ServerName www.pacificx.net
DocumentRoot /home/public_html
</VirtualHost>
What is wrong? When I start named...there are no errors given.