forked from Ponysearch/Ponysearch
Merge pull request #2097 from immanuelfodor/patch-1
Adjust uWSGI workers and threads from env
This commit is contained in:
commit
18d895ffed
1 changed files with 6 additions and 0 deletions
|
@ -61,6 +61,12 @@ echo "SearXNG version ${SEARXNG_VERSION}"
|
||||||
# helpers to update the configuration files
|
# helpers to update the configuration files
|
||||||
patch_uwsgi_settings() {
|
patch_uwsgi_settings() {
|
||||||
CONF="$1"
|
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() {
|
patch_searxng_settings() {
|
||||||
|
|
Loading…
Reference in a new issue