22 lines
728 B
Bash
22 lines
728 B
Bash
# Vantage self-hosted — copy to .env and fill in.
|
|
# Used by: docker compose up -d
|
|
|
|
# --- Required ---
|
|
|
|
# host:port agents dial for gRPC. No default; boot fails without it.
|
|
# Must be reachable from managed servers. Use the public host, port 9090.
|
|
GRPC_HOST=vantage.yourdomain.com:9090
|
|
|
|
# 64-char hex (32 bytes) for AES-256-GCM. Required for private keys,
|
|
# secrets, OIDC secrets, RDP/VNC credentials.
|
|
# Generate: openssl rand -hex 32
|
|
KEY_ENCRYPTION_KEY=
|
|
|
|
# --- Optional (defaults shown) ---
|
|
|
|
# MongoDB is bundled in this compose file. Override only to use an external DB.
|
|
MONGO_URI=mongodb://mongo:27017/vantage
|
|
|
|
# Where workflow run logs are written inside the server container.
|
|
# VANTAGE_WORKFLOW_LOG_DIR=/data/workflow-logs
|