Re: Django not serving static files with even after collectstatic

2017-07-02 Thread Antonis Christofides
Hello, Take a look at https://djangodeployment.com/2016/11/21/how-django-static-files-work-in-production/ and if you still have problems show us the related nginx or apache configuration. Regards, Antonis Antonis Christofides http://djangodeployment.com On 2017-07-03 02:25, Dennis Gathagu wro

Re: Django not serving static files with even after collectstatic

2017-07-02 Thread Dylan Reinhold
django does not (should not) serve your static files. You want your web server to serve up those files, so you dont have the overheard of url routing for files that don't need to run any python code to display. Dylan On Sun, Jul 2, 2017 at 4:25 PM, Dennis Gathagu wrote: > i'm having problems wi