mirror of
https://github.com/Fluffy-Bean/Fluffys-website.git
synced 2024-12-27 09:46:05 +00:00
9 lines
180 B
Bash
Executable file
9 lines
180 B
Bash
Executable file
#!/bin/sh
|
|
|
|
APP='website.wsgi:application'
|
|
PATH='/var/www/html/Fluffys-website'
|
|
PORT=8000
|
|
WORKERS=3
|
|
|
|
PING=$(/usr/bin/python3 -m gunicorn -w ${WORKERS} -b :$PORT --chdir $PATH $APP)
|