Report this

What is the reason for this report?

Nginx unable to server static and media images

Posted on March 7, 2015

I have a django app on DigitalOcean droplet running using gunicorn and nginx. The site is working but the static files are giveing 404. Below is my ‘/etc/nginx/sites-available/django-project’ file:

server {

        #listen 80 default_server;
        #listen [::]:80 default_server ipv6only=on;

        server_name aakar.in;

        root /usr/share/nginx/html;
        index index.html index.htm;

        #access_log off;

        client_max_body_size 4G;
        #server_name _;

        keepalive_timeout 5;

        location /media  {
           alias /home/django/django_project/django_project/media;
        }

        location /static/ {
            alias /home/django/django_project/django_project/static;
        }

        location / {

                proxy_pass http://127.0.0.1:9000;
                proxy_redirect off;
                proxy_set_header X-Forwarded-Host $server_name;
                proxy_set_header X-Real-IP $remote_addr;
                proxy_set_header Host $http_host;
                add_header P3P 'CP="ALL DSP COR PSAa PSDa OUR NOR ONL UNI COM N$
        }
    }

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Start building today

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.