🎉 Feature: Backend Performance Optimization 🌟

This commit is contained in:
2025-06-03 14:15:33 +02:00
parent 0b4c88f91c
commit 5b76b8e96b
27 changed files with 550 additions and 54 deletions

View File

@@ -1804,7 +1804,21 @@ EOF
warning "⚠️ CA-Zertifikate-Datei nicht gefunden"
fi
log "✅ SSL-Zertifikate robust konfiguriert"
# Finale SSL-Konfiguration (timeout-gesichert)
progress "Finalisiere SSL-Konfiguration..."
# Finaler CA-Update (nur wenn wirklich nötig)
if [ "$(ls -A /usr/local/share/ca-certificates/myp/ 2>/dev/null)" ] && [ ! -f "/tmp/myp-ca-updated" ]; then
if timeout 20 update-ca-certificates >/dev/null 2>&1; then
touch "/tmp/myp-ca-updated"
success "✅ Finale CA-Zertifikate Integration abgeschlossen"
else
warning "⚠️ Finale CA-Integration fehlgeschlagen - Zertifikate beim nächsten Boot aktiv"
fi
fi
log "✅ SSL-Zertifikate timeout-gesichert konfiguriert"
debug "SSL-Konfiguration abgeschlossen ohne hängende Prozesse"
}
# =========================== ROBUSTES ANWENDUNGS-DEPLOYMENT ===========================