Gateway Settings

Gateway API Key

Use this key to authenticate your gateway instance with our control plane.

gw_placeholder_key

Deployment (Docker Compose)

Copy this to a docker-compose.yml file on your VPS.


services:
  gateway:
    image: ghcr.io/your-org/api-gateway:latest
    environment:
      GATEWAY_API_KEY: ${GATEWAY_API_KEY}
      CONTROL_PLANE_URL: wss://control.yourdomain.com
      REDIS_URL: redis://redis:6379
    depends_on:
      - redis
  redis:
    image: redis:7-alpine