-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Labels
Description
When you load http://falling-ice-3499.herokuapp.com/admin/ the assets for the admin section aren't being served. I think there is a copy assets command in Django so the assets for the admin are apart of the code base rather than needing to be referenced via proxy.
In the past I've done a proxy command via xginx:
location ^~ /static/admin/ {
alias /home/mark/.virtualenvs/marksblogg/lib/python2.7/site-packages/django/contrib/admin/media/;
expires 30m;
}