9 lines
289 B
Bash
Executable file
9 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
|