diff options
| author | Markus Heiser <markus.heiser@darmarIT.de> | 2020-02-08 12:52:22 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-02-08 12:52:22 +0000 |
| commit | 50b070c5d37f9843f83358dde6d7ff901b1784b2 (patch) | |
| tree | 2e330a17c831a1b07c2fd2b0d268cba24ac888e0 | |
| parent | 3062e2adf9bb4de1c8399f03567d97f9be192f95 (diff) | |
| parent | 3f127b6c954c9eea5aa566c4592f6aa7900a95dc (diff) | |
Merge pull request #1835 from dalf/uwsgi_fix
[fix] Disable HTTP keep alive
| -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 |