DevGeek344
DevGeek344

Reputation: 139

Mapping GCP App Engine to a subdomain (not naked domain)

I want to map a subdomain xxxx.domain.com to an App Engine project, I verified my ownership of the domain name (naked name) domain.com registred in GANDI via TXT.

After the verification, I only added xxxx.domain.com in the scope of domain names and I got this informations as result :

App engine domain

I'm confused what records to add to xxxx.domain.com and which records to add to domain.com to make the subdomain working.

By the way, I have domain.com pointing to another service and I want to keep it working

Many thanks

Upvotes: 1

Views: 150

Answers (1)

minou
minou

Reputation: 16563

For a subdomain, you just need to add one DNS record:

Name: xxxx (this is your subdomain)
Type: CNAME
Data: ghs.googlehosted.com

The A/AAAA records are only needed for a naked domain and since you aren't using the naked domain with GAE, you can skip that.

Upvotes: 2

Related Questions