# 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=192.168.1.250:9090 # Gitea host used to build agent install scripts and download URLs. GITEA_HOST=gitea.hostxtra.co.uk # 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