I am having my application deployed to GAE with main domain www.mysite.com. When someone subscribe to my application, he will use email id username@company.com.
I want t
Instructions
mysite.com
)*
as your subdomain in step 5CNAME
, enter *
as the name, and the value should be set to ghs.googlehosted.com
(or whatever is provided to you through the setup process in step 5)That's just about it. You'll have to wait a bit for the DNS settings to properly propagate, but now wildcard.mysite.com
should point to your app.
NOTE
This will allow ANY wildcard to point towards your app. See the notes under More About Wildcard Subdomain Mapping in the Custom Domain Setup Process page linked above. You can limit what subdomains are "allowed" in your app by processing the value in your app and returning 404 errors or the like for subdomains you do not want to acknowledge (in your use case, any value that is not a company name of a user who has signed up for your application)
In the meantime GAE has been updated and subdomain wildcard is now fully supported: Custom Domain docs.
That said, I also had problems with wildcards on godaddy. The wildcard on godaddy is **
but still did not work, I needed to add subdomains manually. By the way, I have not looked for a solution for this, I preferred to point nameservers elsewhere.
If you use webapp2 take a look at Domain and subdomain routing, looks interesting.