LIVE Intel Feed21.639 exponierte Instanzen128.457 Checks93.4% Auth-Bypass RisikoUpdate: Feb 2026Keine Speicherung deiner Eingaben
Runbook

Fix: module not found (Nginx)

Runbook, um „module not found“ in Nginx schnell zu analysieren, zu fixen und zu verifizieren.

Symptom

Fehler: "module-not-found". Kontext: Nginx. Ziel: stabilisieren → fixen → verifizieren.

Top 3 Ursachen (fast immer)

  • Upstream hängt (DB/API/Third‑Party) → Timeouts/502/504
  • Rate‑Limits/WAF/CORS/Origin‑Policies → Block/403/429
  • Deploy Regression (ENV fehlt, Module fehlt, falsche Build‑Settings)

Nginx Checks

tail -n 80 /var/log/nginx/error.log
nginx -t || true

Triage (Copy/Paste)

  • Fehler "module not found" in Nginx: check access/error logs + upstream status.
  • Upstream reachability prüfen (DNS, connect, TLS).
  • Timeouts: proxy_read_timeout / proxy_connect_timeout anpassen.
  • Buffering/413: client_max_body_size prüfen.
  • Verifikation: curl -I + tail -n 50 error.log.

Verifikation (Minimal)

curl -I https://deine-domain.tld
curl -sS https://deine-domain.tld/api/health || true

Guardrails

  • Timeouts + Retries sauber setzen
  • Circuit Breaker / Backpressure
  • Alerts auf 5xx‑Rate & Latenz
Steps
  1. Fehler "module not found" in Nginx: check access/error logs + upstream status.
  2. Upstream reachability prüfen (DNS, connect, TLS).
  3. Timeouts: proxy_read_timeout / proxy_connect_timeout anpassen.
  4. Buffering/413: client_max_body_size prüfen.
  5. Verifikation: curl -I + tail -n 50 error.log.
Hinweis: Diese Inhalte sind für Ops/Security gedacht. Keine „Namen-Datenbank“, keine Anschuldigungen – nur Runbooks, Tools und verifizierbare Checks.
CheckCopilotPro KitsVault