We share an example of our configuration for wiki to show how to set it up so all subdomains are owned by the same owner.
The secrets have been changed, of course. The important bits... config.json includes a section for wikiDomains where the id points to the file which defines the owner for that domain and all the subdomains. The file is where we define the password. In my case I want the same password to allow me admin access to my wikis.
Also worth noting that I'm using the friends security module.
# /home/app/.wiki/config.json { "admin": "this-is-not-a-real-admin-secret", "autoseed": true, "farm": true, "cookieSecret": "this-is-not-a-real-long-random-string", "secure_cookie": true, "security_type": "friends", "wikiDomains": { "wiki.dbbs.co": { "id": "/home/app/.wiki/wiki.dbbs.co.owner.json" } } }
# /home/app/.wiki/wiki.dbbs.co.owner.json { "name": "Eric Dobbs", "friend": { "secret": "this-is-not-a-real-admin-secret" } }