18 lines
716 B
Plaintext
18 lines
716 B
Plaintext
# Copy this file to .env and fill in the values before running docker compose.
|
|
|
|
# Required: a long random secret used for auth token signing.
|
|
# Generate one with: openssl rand -hex 32
|
|
CHGRID_AUTH_SECRET=
|
|
|
|
# The URL the browser uses to reach the app (no trailing slash).
|
|
# Default is http://localhost for local use.
|
|
# Set to your public URL for production, e.g. https://example.com
|
|
CHGRID_HOST_ORIGIN=http://localhost
|
|
|
|
# LiveKit SFU settings (required for voice audio).
|
|
# These must match the keys configured in livekit.yaml.
|
|
LIVEKIT_API_KEY=your-api-key
|
|
LIVEKIT_API_SECRET=your-api-secret
|
|
# This URL is sent to browsers, so it must be reachable from the client (not Docker-internal).
|
|
LIVEKIT_URL=ws://localhost:7880
|