Reputation: 876
I'm looking to give my GAE
app a custom domain. Would I still be able to use wildcard subdomains in the same way I am now with the myapp.appspot.com
domain?
For example, if I navigate to wildCardSub.myapp.appspot.com
I am able to grab the wildcard subdomain and SSL
all works fine without any problems.
If I were to change to a custom domain and navigate to wildCardSub.myNewDomain.com
, would everything work the same? What about SSL
? Would I have to set anything other than the custom domain up?
I was looking to set up a similar structure to appspot.com
, where each user is just given a subdomain of the main domain. For example userName.myDomain.com
.
Any insight is appreciated! Thanks!
Upvotes: 2
Views: 1576
Reputation: 80340
*.*.domain.com
, are not supported by browsers anymore. Single wildcard certs are ok.wildCardSub.myNewDomain.com
. You have to use wildCardSub.modulename.myNewDomain.com
. You can do custom mapping, but not a wildcard mapping.Upvotes: 2