skip to Main Content

nginx not serving statick files django 4.1

I am new in deploy projects my static files not serving with nginx. thats look my site-available/myprject file server{ listen 80; server_name mydomain; location = /favicon.ico { access_log off; log_not_found off; } location /static/ { autoindex on; alias /home/user/project/static; }…

VIEW QUESTION
Back To Top
Search