Hacker News new | ask | show | jobs
by tibanne 851 days ago
Another question. If I host this publicly for people that I work with on their data, how can I make sure that it's only them that can access the service? Do you have any form of auth?
1 comments

Yes! There is Basic Auth (email + password with email verification) and Google OAuth available in the free version.

We also do OIDC and SAML to integration with Identity Providers (IdPs) like Okta but that's part of the paid features. Ahhh please don't hate us!

With the free version, can I constrain the emails to be from one domain? i.e. the company domain
Chris here (the other founder) - yes you can! We have an `VALID_EMAIL_DOMAINS ` env variable which controls this.

For example, for us we have `VALID_EMAIL_DOMAINS=danswer.ai`.

Awesome, thank you!