Aegilock Logo

Bot-Schutz für NGINX – ohne Captchas, ohne Cloud

Integrieren Sie Aegilock als schlankes Reverse-Proxy-Modul direkt in Ihre NGINX-Umgebung. ML-basiert, DSGVO-konform und in Minuten bereit.

Jetzt Angebot anfordern

Schnelle Integration per NGINX + Lua

NGINX-Konfiguration

Fügen Sie diesen Block in Ihre nginx.conf ein:

location / {
  access_by_lua_block {
    local res = ngx.location.capture('/check',
      { method = ngx.HTTP_POST, body = ngx.req.get_body_data() })
    if res.status == 403 then return ngx.exit(403) end
  }
}

Docker-Startbefehl

Das Check-Interface wird lokal per Docker bereitgestellt:

docker run -d \
  -p 8080:80 \
  -e TOKEN_SECRET="setze-ein-sicheres-passwort" \
  aegilock/nginx-module:latest

Live-Test per API

Test-Request

curl -X POST http://localhost:8080/check \
  -H "Content-Type: application/json" \
  -d '{
    "ip": "84.123.45.67",
    "user_agent": "Mozilla/5.0 ...",
    "path": "/checkout"
  }'

Beispielantwort

{
  "bot": true,
  "confidence": 0.91,
  "reason": "Suspicious UA + RatePattern"
}

Einmal zahlen. Dauerhaft geschützt.

Self-Hosted-Lizenz – keine Cloud, kein Abo.

1.900 € netto

Einmalzahlung, unbegrenzte Nutzung. Kein Abo. Kein Lock-in.

Jetzt Angebot anfordern
Zurück zur Startseite