remove plugin param after updating

This commit is contained in:
Ivan Gabaldon 2025-05-05 12:16:14 +02:00
parent 2ddb04ca3b
commit 7c9005553b
No known key found for this signature in database
GPG Key ID: 075587C93FA67582

View File

@ -54,6 +54,12 @@ patch_uwsgi_settings() {
-e "s|workers = .*|workers = ${UWSGI_WORKERS:-%k}|g" \
-e "s|threads = .*|threads = ${UWSGI_THREADS:-4}|g" \
"${CONF}"
# migration from old monolithic container image to the new one
# https://github.com/searxng/searxng/pull/4721
sed -i \
-e "/plugin = python3/d" \
"${CONF}"
}
patch_searxng_settings() {