1
0
mirror of https://github.com/craigerl/aprsd.git synced 2024-11-17 13:51:54 -05:00

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

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}