google app engine - AppEngine Modules to subdomain -
i know how can point 1 of module in appengine subdomain. example:
module-one.myapp.appspot.com -> mydomain.com module-two.myapp.appspot.com -> two.mydomain.com
solution:
- how @svpino have set wildcard.
then have have on dispatch.yaml:
url: "two.mydomain.com/*"
and have create custom domain name in settings of app engine.
you have set wildcard subdomain: example: *.app.example.com. can read more how in following link:
https://developers.google.com/appengine/docs/domain#more_about_wildcard_subdomain_mapping
if set wildcard subdomain mapping custom domain, application serves requests subdomain matches.
if user browses domain matches application version name or backend name, application serves version. if user browses domain matches backend name, application serves backend. example, suppose set wildcard subdomain *.wild.example.com. application has 2 versions, default version , 1 named beta. application has backend server named 1 backend instance running.
Comments
Post a Comment