I'd be interested in knowing this myself. I think I recall that there's an experimental feature somewhere that's testing account authentication to multiple mongo databases; and someone was trying to get logins across subdomains working by having the different subdomains be able to point to the same mongo database for authentication. In essence, if I recall the discussion correctly, it would wind up having a MONGO_URL and a MONGO_ACCOUNTS_URL. Or something to that effect. But for the life of me, I can't find the email thread now.
The first step would probably be to create two apps and point them to the same MONGO_URL. The accounts collection should then be shared, and they should have the same crypto on the passwrods. After that, it's a problem of passing client cookie and session data between URLs via localStorage, right? Just brainstorming here, but I'd start by looking at the following methods, maybe:
Meteor.onConnection()
DDP.connect()Meteor.loginWithPassword()
Meteor.logout()
Meteor.loggingIn()
Accounts.onLogin()