1
0
mirror of https://github.com/searxng/searxng.git synced 2024-07-07 09:50:12 +02:00

Merge pull request #2097 from immanuelfodor/patch-1

Adjust uWSGI workers and threads from env
This commit is contained in:
Alexandre Flament 2023-01-14 16:36:57 +01:00 committed by GitHub
commit 18d895ffed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -61,6 +61,12 @@ echo "SearXNG version ${SEARXNG_VERSION}"
# helpers to update the configuration files
patch_uwsgi_settings() {
CONF="$1"
# update uwsg.ini
sed -i \
-e "s|workers = .*|workers = ${UWSGI_WORKERS:-%k}|g" \
-e "s|threads = .*|threads = ${UWSGI_THREADS:-4}|g" \
"${CONF}"
}
patch_searxng_settings() {