Initial commit

This commit is contained in:
Dessa Simpson 2022-10-13 07:16:08 +00:00
commit e40b26bc05
7 changed files with 33 additions and 0 deletions

2
services/cron/run Executable file
View file

@ -0,0 +1,2 @@
#!/bin/sh
/usr/sbin/crond -f -l 2

9
services/uwsgi/run Executable file
View file

@ -0,0 +1,9 @@
#!/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