diff options
| author | Mitch Riedstra <mitch@riedstra.us> | 2019-03-27 23:06:36 -0400 |
|---|---|---|
| committer | Mitch Riedstra <mitch@riedstra.us> | 2019-03-27 23:06:36 -0400 |
| commit | c49d9e0d69685d022fa6ffaa04f91bbe46f67551 (patch) | |
| tree | 5f100e3f9b70340f2e642de286cda01183b6e5b4 /app/uwsgi.ini | |
| parent | 35dddcfc0dc2ded193a6b503f9ff4a5a3cd68439 (diff) | |
| download | dispatch-tracker-c49d9e0d69685d022fa6ffaa04f91bbe46f67551.tar.gz dispatch-tracker-c49d9e0d69685d022fa6ffaa04f91bbe46f67551.tar.xz | |
Fully dockerized environment
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 |
