Getting Started

Welcome to the AegisGate Security Platform documentation. Here you’ll find everything you need to deploy, configure, and use AegisGate Security Platform.


Quick Start

docker run -d \
  -p 8080:8080 \
  -p 8081:8081 \
  -p 8443:8443 \
  ghcr.io/aegisgatesecurity/aegisgate-platform:latest

Verify Installation

curl http://localhost:8443/health

Expected response:

{"status":"healthy","version":"2.0.1","services":{"proxy":"up","mcp":"up","scanner":"up"}}

Configuration

Environment Variables

VariableDescriptionDefault
AEGIS_LICENSELicense keyCommunity
AEGIS_LOG_LEVELLog verbosityinfo
AEGIS_PROXY_PORTHTTP proxy port8080
AEGIS_MCP_PORTMCP server port8081
AEGIS_DASHBOARD_PORTDashboard port8443
AEGIS_RATE_LIMITRequests per minute1000

API Reference

Health Check

GET /health

Returns system status.

Proxy Endpoints

POST /v1/scan

Scans content for threats.


Next Steps