Update stack.env

This commit is contained in:
2025-12-09 02:46:18 +00:00
parent a830cdbe71
commit 3ceb920ca7

View File

@@ -6,27 +6,27 @@
# Prisma
# https://www.prisma.io/docs/reference/database-reference/connection-urls#env
# DATABASE_URL supports pooled connections, but then you need to set DIRECT_URL
DATABASE_URL="postgresql://vasceannie:squirtle123456@192.168.50.210:5432/sandbox?schema=pgce27jc2uf9rmy"
DIRECT_URL="postgresql://vasceannie:squirtle123456@192.168.50.210:5432/sandbox?schema=pgce27jc2uf9rmy"
DATABASE_URL=postgresql://vasceannie:squirtle123456@192.168.50.210:5432/sandbox?schema=pgce27jc2uf9rmy
DIRECT_URL=postgresql://vasceannie:squirtle123456@192.168.50.210:5432/sandbox?schema=pgce27jc2uf9rmy
# SHADOW_DATABASE_URL=
# optional, set to true to disable automated database migrations on Docker start
# LANGFUSE_AUTO_POSTGRES_MIGRATION_DISABLED=
# Next Auth
# NEXTAUTH_URL does not need to be set when deploying on Vercel
NEXTAUTH_URL="http://fuse.lab"
NEXTAUTH_URL=http://fuse.lab
# For each of these, you can generate a new secret on the command line with:
# openssl rand -base64 32
NEXTAUTH_SECRET="xYoFVQKTvS1MJroEB4YtaV+4KqdfgjbgeXI/2AxEcjM=" # https://next-auth.js.org/configuration/options#secret
NEXTAUTH_SECRET=xYoFVQKTvS1MJroEB4YtaV+4KqdfgjbgeXI/2AxEcjM= # https://next-auth.js.org/configuration/options#secret
SALT="dba1604d7203e28d9f66220b675b623a11fb2adb19b6bdf780cc7ffb4dc19647" # salt used to hash api keys
# API level encryption for sensitive data
# Must be 256 bits, 64 string characters in hex format, generate via: openssl rand -hex 32
ENCRYPTION_KEY="5d6e52ef4eebcb3428c9bc9ee91166af80879ad526c193e85349e8ed6c7cec7e"
ENCRYPTION_KEY=5d6e52ef4eebcb3428c9bc9ee91166af80879ad526c193e85349e8ed6c7cec7e
# Use CSP headers to enforce HTTPS, optional
# LANGFUSE_CSP_ENFORCE_HTTPS="true"
# LANGFUSE_CSP_ENFORCE_HTTPS=true
# Configure base path for self-hosting, optional
# Note: You need to build the docker image with the base path set and cannot use the pre-built docker image if you set this.