From c49d9e0d69685d022fa6ffaa04f91bbe46f67551 Mon Sep 17 00:00:00 2001 From: Mitch Riedstra Date: Wed, 27 Mar 2019 23:06:36 -0400 Subject: Fully dockerized environment --- app/uwsgi.ini | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'app/uwsgi.ini') 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 -- cgit v1.2.3