26 lines
1.2 KiB
Bash
26 lines
1.2 KiB
Bash
# Nexus Production Environment Configuration
|
|
# Copy this file to .env and fill in all values before deploying.
|
|
|
|
# ── PostgreSQL ──────────────────────────────────────────
|
|
POSTGRES_DB=nexus
|
|
POSTGRES_USER=nexus
|
|
POSTGRES_PASSWORD=***
|
|
|
|
# ── Connection String (inferred from above when using compose) ──
|
|
# ConnectionStrings__Nexus=Host=localhost;Database=${POSTGRES_DB};Username=${POSTGRES_USER};Password=${POSTGRES_PASSWORD}
|
|
|
|
# ── JWT ─────────────────────────────────────────────────
|
|
# Generate with: openssl rand -base64 48
|
|
JWT_KEY=*** # at least 32 bytes (base64-encoded)
|
|
JWT_ISSUER=nexus
|
|
JWT_AUDIENCE=nexus-web
|
|
|
|
# ── Bootstrap Owner (first seed only) ───────────────────
|
|
BOOTSTRAP_OWNER_EMAIL=***
|
|
|
|
# ── OpenClaw Integration ────────────────────────────────
|
|
# Internal Docker-DNS URL of the OpenClaw gateway
|
|
OPENCLAW_BASE_URL=http://openclaw-gateway-bao:18789
|
|
OPENCLAW_GATEWAY_TOKEN=***
|
|
OPENCLAW_GATEWAY_PASSWORD=***
|