nginx not serving admin static files?
My suggestions:
Use django 1.3+ (and ADMIN_MEDIA_PREFIX is deprecated now)
Set both
STATIC_URL
andSTATIC_ROOT
in your settings.pyDefine just a single static entry in your nginx conf (with trailing slashes). No need for a second one that addresses
static/admin/
:location /static/ { alias /path/to/static/; }
Use
collectstatic
which should collect admin -> static/admin. It will live under the same location as all the rest of your collected static media.python manage.py collectstatic