old-website/run.sh

9 lines
180 B
Bash
Raw Normal View History

2023-06-19 19:08:23 +00:00
#!/bin/sh
2023-07-11 22:12:32 +00:00
APP='website.wsgi:application'
PATH='/var/www/html/Fluffys-website'
PORT=8000
2023-06-19 19:08:23 +00:00
WORKERS=3
2023-07-11 22:12:32 +00:00
PING=$(/usr/bin/python3 -m gunicorn -w ${WORKERS} -b :$PORT --chdir $PATH $APP)