Domain registration.

All about creating websites!
Post Reply
User avatar
FaoX
suck-o-fied!
suck-o-fied!
Posts: 76
Joined: 07 Sep 2007, 16:00
16
Contact:

Domain registration.

Post by FaoX »

I have a domain, I wish to attach it to my server. Never done this before since Ive never put out the cash for the real name. Can anyone tell me step by step how to do it?

User avatar
ayu
Staff
Staff
Posts: 8109
Joined: 27 Aug 2005, 16:00
18
Contact:

Post by ayu »

Well, you would have to login to the domain name hosts site i guess (control panel or something, should be on their site) and point the domain to your site.
"The best place to hide a tree, is in a forest"

User avatar
bad_brain
Site Owner
Site Owner
Posts: 11636
Joined: 06 Apr 2005, 16:00
19
Location: In your eye floaters.
Contact:

Post by bad_brain »

yep, have to be done in your domain control panel, there are 2 ways depending on the registrar and account type:
- setting the A-Name
if you can set the A-Name all you have to do is to enter the server IP there

- set the DNS servers
if no A-Name record is available you have to set the DNS servers, of course the domain have to be added to the DNS servers first. if you have an own server box that runs DNS (bind for example) you can set it there, else you have to make a specialized company do that for you...I offer DNS service for 6 euro/year for example.

as last step you have to add the new domain name to your server settings, in most cases as virtual host:

Code: Select all

 <VirtualHost my.ip.add.ress>
       ServerName www.mydomain1.com
       ServerPath /mydomain1.com
       DocumentRoot /var/www/localhost/htdocs
 </VirtualHost>
:wink:

Post Reply