Diagnose a problem
Be sure to check your logs (probably, /var/log/nginxor some option).
Check what port 80 gogging can be
netstat -nlp | grep 80
Ports supporting hogging ports
Then make sure the Django site is included in sites-enabled. Delete all old symbolic links if you created the first one.
rm /etc/nginx/sites-enabled/django
ln -s /etc/nginx/sites-available/django /etc/nginx/sites-enabled/django
/etc/nginx/nginx.conf, .
http {
...
include /etc/nginx/sites-enabled/*;
}
nginx.
service nginx restart, service nginx stop && service nginx start