diff options
| author | Ivan Gabaldon <igabaldon@inetol.net> | 2025-04-04 14:57:53 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-04 14:57:53 +0200 |
| commit | 9424bac031db78ab23d1e5f21ec2906e3d603433 (patch) | |
| tree | 79b17997b14b4a1316f2f6217516a5d799b2bf81 /dockerfiles/uwsgi.ini | |
| parent | 59228fb1db9b48aa17260fd556061d612c979027 (diff) | |
Don't hardcode uWSGI parameters (#4578)
* Initial update
* fix
* add todo note
Diffstat (limited to 'dockerfiles/uwsgi.ini')
| -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 f1309ca89..dfde9109a 100644 --- a/dockerfiles/uwsgi.ini +++ b/dockerfiles/uwsgi.ini @@ -1,4 +1,8 @@ [uwsgi] +# Listening address +# default value: [::]:8080 (see Dockerfile) +http-socket = $(BIND_ADDRESS) + # Who will run the code uid = searxng gid = searxng |