Report this

What is the reason for this report?

How to serve files with Django and Nginx

Posted on February 28, 2017

Hello I really need help with my static files Can someone give me step by step process on how to serve the static files


server{
        listen 80;
        server_name muzilla-mp3.com www.muzilla-mp3.com;

        location /static {
                root /usr/local/var/www/example.com/htdocs; 
        }
}

htdocs have all my static files

STATIC_URL = '/static/'

STATIC_ROOT = '/usr/local/var/www/example.com/htdocs'

I am using a template and dont know how it works



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

@deangeloalmeus

What you have above should work for requests for files in the directory below.

/usr/local/var/www/example.com/htdocs/static

… though it won’t handle requests for anything else, so if a file is located anywhere other than within that directory, NGINX won’t serve it.

If you’re seeing errors, please run:

tail -20 /var/log/nginx/error.log

… and paste the output in a code block.

I dont have to add nothing in my code like {% load static from staticfiles %}

Do not forget to configure these files:

/etc/systemd/system/gunicorn.socket /etc/systemd/system/gunicorn.service

very careful with the user sammy, replace with the real user

The developer cloud

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

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.