Multitenant application domain names configurations in app engine

111 views Asked by At

I have developed a multitenant application in Google App Engine using Django Rest Framework(django-tenant-schemas) with Angular Front end as a Software As A Service Platform. I have purchased domain names locally and want to map several domain names to app engine resources so that if a client enters his domain url angular gets the url and retrieves content from its database schema. I have configured only one domain name and I need to add other domain's. Is there a way I can configure all the domains to point to the same resources on the app engine

1

There are 1 answers

0
George On

For a multitenant application, you can use the dispatch.yaml configuration file, which allows you to override routing rules. You can use the dispatch.yaml to send incoming requests to a specific service (formerly known as modules) based on the path or hostname in the URL. Related detail may be gathered from the dispatch.yaml Configuration File page.

You may check replies to the Multiple custom domains to specific version of Google App Engine app question, and referenced page Add a Custom Domain to the Specific Module of Google App Engine Managed VMs.