From 52800ef177ce266c1ae517f8d59da6d4ffa6edc7 Mon Sep 17 00:00:00 2001 From: Johnson Liang Date: Thu, 22 Aug 2024 18:35:57 +0800 Subject: [PATCH] fix: Update nextauth URL to avoid NEXTAUTH_URL invalid error (#20) --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ee74da9..0d57a3b 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ The following table lists the useful configurable parameters of the Langfuse cha | Parameter | Description | Default | | --- | --- | --- | -| `langfuse.nextauth.url` | When deploying to production, set the `nextauth.url` value to the canonical URL of your site. | `localhost:3000` | +| `langfuse.nextauth.url` | When deploying to production, set the `nextauth.url` value to the canonical URL of your site. | `http://localhost:3000` | | `langfuse.nextauth.secret` | Used to encrypt the NextAuth.js JWT, and to hash email verification tokens. | `changeme` | | `langfuse.salt` | Salt for API key hashing | `changeme` | | `langfuse.telemetryEnabled` | Weither or not to enable telemetry (reports basic usage statistics of self-hosted instances to a centralized server). | `true` | @@ -49,7 +49,7 @@ The following table lists the useful configurable parameters of the Langfuse cha ```yaml langfuse: nextauth: - url: localhost:3000 + url: http://localhost:3000 secret: changeme salt: changeme telemetryEnabled: true @@ -74,7 +74,7 @@ postgresql: ```yaml langfuse: nextauth: - url: localhost:3000 + url: http://localhost:3000 secret: changeme salt: changeme telemetryEnabled: true