diff options
Diffstat (limited to 'app/uwsgi.ini')
| -rw-r--r-- | app/uwsgi.ini | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/app/uwsgi.ini b/app/uwsgi.ini index 829d185..2dae309 100644 --- a/app/uwsgi.ini +++ b/app/uwsgi.ini @@ -2,13 +2,14 @@ processes = 1 threads = 4 -env = CUSTOM_CONFIG=config.yml +env = CUSTOM_CONFIG=config-compose.yml -socket = 127.0.0.1:9200 +# use 127.0.0.1 instead of 0.0.0.0 if possible +# this is for a containerized deployment +socket = 0.0.0.0:9200 module = wsgi:application -daemonize=uwsgi.log -pidfile=uwsgi.pid +# uid = uwsgi -home = env +# home = env |
