File size: 212 Bytes
d7e0ba9
4611af7
 
ab0534e
4611af7
 
1
2
3
4
5
6
#!/bin/bash
# Start Nginx on port 8080 (Hugging Face's allowed port)
sudo /usr/sbin/nginx -c /etc/nginx/nginx.conf -g "daemon off;" &

# Start Gunicorn
gunicorn django_project.wsgi:application --bind 0.0.0.0:7860