From 64eef3bce5bf15bef34e40dfec4ec7faa13e5cab Mon Sep 17 00:00:00 2001 From: wukuan405 Date: Tue, 5 Jul 2022 10:02:45 +0900 Subject: [PATCH] bug fix: uwsgi log file from searx to searxng ## What does this PR do? bug fix: change uwsgi log file from searx to searxng ## Why is this change important? ## How to test this PR locally? ## Author's checklist ## Related issues --- utils/searx.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/searx.sh b/utils/searx.sh index ce118ed77..2f41f6499 100755 --- a/utils/searx.sh +++ b/utils/searx.sh @@ -946,7 +946,7 @@ EOF while true; do trap break 2 case $DIST_ID-$DIST_VERS in - ubuntu-*|debian-*) tail -f /var/log/uwsgi/app/searx.log ;; + ubuntu-*|debian-*) tail -f /var/log/uwsgi/app/searxng.log ;; arch-*) journalctl -f -u "uwsgi@${SERVICE_NAME%.*}" ;; fedora-*|centos-7) journalctl -f -u uwsgi ;; esac