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

Nginx dynamic route

I made a sample application that produces dynamic static files. I basically do not want to enter all the routes manually into the default file of Nginx. I saw some solutions here but the answers were not understandable for me…

VIEW QUESTION
Back To Top
Search