| commit | author | age | ||
| 83c3f6 | 1 | #!/bin/bash |
| SP | 2 | |
| 3 | # Start the first process | |
| 4 | /etc/init.d/nginx start | |
| 5 | status=$? | |
| 6 | if [ $status -ne 0 ]; then | |
| 7 | echo "Failed to start my_first_process: $status" | |
| 8 | exit $status | |
| 9 | fi | |
| 10 | ||
| 11 | gunicorn --chdir /app --bind :8888 --error-log /var/log/sizif/gnunicorn-error.log --capture-output True aoi.wsgi:application | |