Quote (SelfTaught @ Apr 26 2014 09:50pm)
are you hosting on linux / windows server / os x ?
are you using a stack of some sort such as LAMP, MAMP, or WAMP?
if not.. have you decided which dns and web serving software you're going to use? (Bind9, Apache, Nginx, Lighttpd, etc)
and, I'd recommend buying a static ip address from comcast so you don't have to repoint / configure your dns every time the dynamic one changes..
not his question
not his question
not his question
gl with that
answer to your question
use your registrars dns servers
create an A record for @ if it doesn't already exist, @ may also be yourdomain.com depending on the registrar
@ will point to your ip
create a CNAME from www.yourdomain.com to @ (or again yourdomain.com if @ is not used) if it does not already exist
If www.yourdomain.com exists as an A record, point it to your IP or recreate it as a cname
example of what things would look like
format is record name, TTL, record type, origin
Code
;; CNAME Records
www.mydomain.com. 3600 IN CNAME mydomain.com.
;; A Records (IPv4 addresses)
mydomain.com. 3600 IN A 123.123.123.123
This post was edited by 0n35 on Apr 27 2014 09:33am