2 lines
174 B
Bash
2 lines
174 B
Bash
#!/bin/bash
|
|
exec gunicorn -b 0.0.0.0:1986 -w 4 --thread 2 --log-level debug app:app --timeout 120 --worker-class gthread --access-logfile - --error-logfile - --capture-output |