Multi-line DNS records

I want to delegate one subdomain to AWS’s Route53 (not that relevant). This is done by creating NS record for subdomain.example.com. Such records must contain multiple lines of values. How can I create such records since Vercel doesn’t allow new lines in values. Is there another separator? Documentation doesn;t mention any of it. Thanks!

Hey, @andrey-1623! Welcome :waving_hand:

You can set up multi-value DNS records in Vercel by adding multiple separate NS records for the same subdomain. Not by putting all values in one record.

For example, if you’re delegating subdomain.example.com to Route53, add each nameserver as its own NS record:

  • Name: subdomainType: NSValue: ns-123.awsdns-12.com
  • Name: subdomainType: NSValue: ns-456.awsdns-34.net
  • Name: subdomainType: NSValue: ns-789.awsdns-56.org

Vercel will handle multiple records with the same name/type correctly.

Let us know how you get on!