diff options
author | Dalf <alex@al-f.net> | 2020-02-07 19:16:15 +0100 |
---|---|---|
committer | Dalf <alex@al-f.net> | 2020-02-07 19:16:15 +0100 |
commit | 0579d9378301409f21eb806e7c32ddf8a8bbb6ec (patch) | |
tree | 871b7dda74973932604c84fdab728f4114383574 /dockerfiles | |
parent | f9c7a678d273c55a0e8a1a7a2dbfd696b2046e60 (diff) | |
download | searxng-0579d9378301409f21eb806e7c32ddf8a8bbb6ec.tar.gz searxng-0579d9378301409f21eb806e7c32ddf8a8bbb6ec.zip |
[fix] Disable HTTP keep alive
Fix HTTP 429 response from filtron
See https://github.com/searx/searx-docker/issues/24
Diffstat (limited to 'dockerfiles')
-rw-r--r-- | dockerfiles/uwsgi.ini | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/dockerfiles/uwsgi.ini b/dockerfiles/uwsgi.ini index fa2fd6302..ecc4b394e 100644 --- a/dockerfiles/uwsgi.ini +++ b/dockerfiles/uwsgi.ini @@ -31,3 +31,7 @@ touch-logrotate = /run/uwsgi-logrotate unique-cron = 15 0 -1 -1 -1 { touch /run/uwsgi-logrotate } log-backupname = /var/log/uwsgi/uwsgi.log.1 logto = /var/log/uwsgi/uwsgi.log + +# No keep alive +# See https://github.com/searx/searx-docker/issues/24 +add-header = Connection: close |