Update docker bin/admin.sh

This patch uses the wsgi.py instead of admin_Web.py
This commit is contained in:
Hemna 2023-07-19 18:50:42 +00:00
parent 6a6e854caf
commit fa452cc773
1 changed files with 2 additions and 1 deletions

View File

@ -27,5 +27,6 @@ if [ ! -e "$APRSD_CONFIG" ]; then
fi
export COLUMNS=200
exec gunicorn -b :8000 --workers 4 "aprsd.admin_web:create_app(config_file='$APRSD_CONFIG', log_level='$LOG_LEVEL')"
#exec gunicorn -b :8000 --workers 4 "aprsd.admin_web:create_app(config_file='$APRSD_CONFIG', log_level='$LOG_LEVEL')"
exec gunicorn -b :8000 --workers 4 "aprsd.wsgi:app"
#exec aprsd listen -c $APRSD_CONFIG --loglevel ${LOG_LEVEL} ${APRSD_LOAD_PLUGINS} ${APRSD_LISTEN_FILTER}