Skip to content

Commit

Permalink
fix: Update nextauth URL to avoid NEXTAUTH_URL invalid error (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
MrOrz authored Aug 22, 2024
1 parent 9a8db34 commit 52800ef
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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` |
Expand All @@ -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
Expand All @@ -74,7 +74,7 @@ postgresql:
```yaml
langfuse:
nextauth:
url: localhost:3000
url: http://localhost:3000
secret: changeme
salt: changeme
telemetryEnabled: true
Expand Down

0 comments on commit 52800ef

Please sign in to comment.