Integrieren Sie Aegilock als schlankes Reverse-Proxy-Modul direkt in Ihre NGINX-Umgebung. ML-basiert, DSGVO-konform und in Minuten bereit.
Jetzt Angebot anfordernFü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
}
}
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
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"
}'
{
"bot": true,
"confidence": 0.91,
"reason": "Suspicious UA + RatePattern"
}
Self-Hosted-Lizenz – keine Cloud, kein Abo.
1.900 € netto
Einmalzahlung, unbegrenzte Nutzung. Kein Abo. Kein Lock-in.
Jetzt Angebot anfordern