I setup a Trusty VM with Django + Nginx (other stuffs too).
The server is working, I get the "Welcome to Django" page. But when I enter to servername/admin
it loads the HTML page but fails to load the static content.
And the admin page have this links to static content:
<link rel="stylesheet" type="text/css" href="/static/admin/css/base.css" />
<link rel="stylesheet" type="text/css" href="/static/admin/css/login.css" />
Both of the CSS files give me 404, as the Nginx log shows:
192.168.56.1 - - [05/Jun/2014:12:04:09 -0300] "GET /admin HTTP/1.1" 301 5 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:29.0) Gecko/20100101 Firefox/29.0"
192.168.56.1 - - [05/Jun/2014:12:04:09 -0300] "GET /admin/ HTTP/1.1" 200 833 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:29.0) Gecko/20100101 Firefox/29.0"
192.168.56.1 - - [05/Jun/2014:12:04:10 -0300] "GET /static/admin/css/base.css HTTP/1.1" 404 142 "http://ubuntu-server/admin/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:29.0) Gecko/20100101 Firefox/29.0"
192.168.56.1 - - [05/Jun/2014:12:04:10 -0300] "GET /static/admin/css/login.css HTTP/1.1" 404 142 "http://ubuntu-server/admin/" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:29.0) Gecko/20100101 Firefox/29.0"
I think that the error is on my nginx.conf file, but no idea how to solve it. This is the site tree:
Major files: urls.py
, settings.py
.
This is most likely a problem of configuration in django or Nginx
There are two things you want to check:
Are your staticfiles configured correctly in settings.py? For the basic django page, these settings are not necessary, but for your static files, you need to configure static files. That is not necessary for production use, because there the webserver serves the static files. Are they collected? Once configured you might have to run
python manage.py collectstatic
.For instance,
Django does not serve static files by itself (unless you set
DEBUG=True
insettings.py
), thus you will have to add a configuration in engine x to make it serve the static files. You might have to restart nginx and/or addautoindex on;
to your config for /static/ in nginx.conf.See Deploying static files.
In development, you might also have to add the
/static/
url to your urls.py (in development) and not just the settings.I ran into the same problem and a slight change in the nginx configuration solved it for me.
This was my nginx config for serving static files:
The solution was to replace
root
withalias
, like so:I'm guessing you have the wrong file paths. According to what the server is saying the admin and static folders are in the same path.
Also on Linux / is the root path. Your files aren't in the root directory.
Again I am just guessing, hope that this helps!