Mahesh S
Mahesh S

Reputation: 395

How to create subdomain on aws and point that from godaddy dns domain

I have followed the below link instructions: https://docs.aws.amazon.com/Route53/latest/DeveloperGuide/dns-routing-traffic-for-subdomains.html

  1. The server is nodejs it is running on AWS server 80 port.
  2. I have a domain on GoDaddy and want to point that nodejs server as a subdomain from GoDaddy DNS.
  3. Follow the link above and set up the things accordingly.
  4. Using only node server neither Apache or Nginx

but nothing helps me to get out of the issue

Upvotes: 2

Views: 2823

Answers (1)

Azize
Azize

Reputation: 4476

Assuming your domain is example.com and you have it on GoDaddy, follow the steps below:

  1. Create a public hosted zone on Route53. This will create a record-set of type NS with 4 values.
  2. On GoDaddy, create a record-set of type NS called subdomain.example.com pointing to all 4 names you got from the 1st step.

Upvotes: 2

Related Questions