Aegis controls Envoy via xDS (specifically using the ADS - Aggregated Discovery Service - protocol). You configure everything through the Aegis UI — no manual YAML editing required.
envoy.yaml) pointing it to Aegis.aegis:18000 (gRPC ADS).envoy.yaml)Envoy needs a static bootstrap file to know where to find the xDS server. The provided envoy/envoy.yaml configures:
aegis:18000 (using gRPC).home (must match NODE_ID env var in Aegis).9901 (internal or public as mapped in docker-compose).Do not add listeners or clusters to this bootstrap file. They should be managed entirely through the Aegis Gateway UI (and are stored in Aegis's database).
starter.json)The configs/starter.json is not read by Envoy. It is an export of the Aegis database structure. When imported via the Aegis UI, it configures:
http_listener (port 10080): Redirects all standard HTTP traffic to HTTPS, but routes /.well-known/acme-challenge to the acme-renewer cluster.https_listener (port 10443): Placeholder for your SSL traffic with SNI matching.acme-renewer cluster: Points to Aegis's built-in ACME challenge responder.my-service cluster: Placeholder for your actual backend application.Once imported, Aegis dynamically translates these into Envoy-native config and pushes them to Envoy over the xDS channel.