You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 8, 2021. It is now read-only.
Domain Strategy
Shared Database, Shared Schema
Single Application Instance
Subdomain per Tenant
This means :
there is only 1 database. No sharding.
there is only 1 web app (cakephp3 app) running in 1 server
the way we determine a Tenant is by looking at the subdomain.
Therefore,
tenant1.example.com and tenant2.example.com are two different tenants. Both are served by the same web app (cakephp 3) that is talking to the same database.
In your readme, you wrote:
This means :
Therefore,
tenant1.example.comandtenant2.example.comare two different tenants. Both are served by the same web app (cakephp 3) that is talking to the same database.Am I right so far?