[Django]-Nginx Static Files doesn't load Django

2👍

One answer might be that by changing the user, you should be able to access resources. In the "nginx.conf" file, at the top you can add/edit the user that is accessing the resources with this string

user "USER_PROJECT_OWNER";

2👍

Have you tried to configure nginx creating a new user? Try to follow digitalocean’s tutorial on deploying django application with nginx and gunicorn. But create a new user first, you will see the guideline in their site.

Leave a comment