0x0-docker/services/uwsgi/run

10 lines
289 B
Bash
Executable File

#!/bin/sh
cd /app
exec /usr/sbin/uwsgi --uid uwsgi \
--plugins python3 \
--http-socket :8080 \
--wsgi-file fhost.py \
--callable app \
--processes 2 \
--threads 4