The free git Server „gitea“ sometimes has problems with the performance of its WebUI. It sometimes takes a few seconds from the click to the reaction in the browser. To fix this, please try this solution:
MehrSchlagwort: browser
Sicherheit: access.log analysen (Browser, IP Adressen, ...)
Um aus der „accedd_log“ (oder „access.log“) die Anzahl der unterschiedlichen Browser zu filtern, nutzen Sie folgenden Befehl: awk -F\“ ‚{print $6}‘ /var/log/access_log | sort | uniq -c | sort -fnr Die 50 häufigsten IP Adressen von Zugriffen zu erhalten: awk ‚{print $1}‘ /var/log/access_log | sort | uniq -c | sort -rn | head -50 Bei beiden Beispielen muss natürlich der Pfad zum gewünschten Log angepasst werden.
Mehr