Can we use Langfuse without any Authentication enabled? #4119
-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hey @SudhaGarimella! 👋 I'm here to help you with any bugs, questions, or contributions you have. Let's dive into this together! There isn't a direct configuration option in Langfuse to completely disable all forms of authentication. However, you can disable email/password authentication by setting If you need to bypass authentication entirely, you might need to modify the codebase directly, which isn't recommended due to potential security risks and maintenance challenges. Since your deployment is on a specific VPN, you might consider implementing network-level access controls as an additional layer of security while keeping some form of authentication enabled. |
Beta Was this translation helpful? Give feedback.
Hey @SudhaGarimella! 👋 I'm here to help you with any bugs, questions, or contributions you have. Let's dive into this together!
There isn't a direct configuration option in Langfuse to completely disable all forms of authentication. However, you can disable email/password authentication by setting
AUTH_DISABLE_USERNAME_PASSWORD=true
and prevent new user sign-ups by settingNEXT_PUBLIC_SIGN_UP_DISABLED=true
. This setup will still require existing users to authenticate, but it restricts new sign-ups [1][2].If you need to bypass authentication entirely, you might need to modify the codebase directly, which isn't recommended due to potential security risks and maintenance challenges. Since …