[Answer]-Why won't newly installed Django app with NGINX serve static assets properly?

1👍

Try run command,

python manage.py collectstatic

If the commands executes successfuly, the static file would be generated in your project path, and then if you config the right static path, the web page will be correct.

Leave a comment