Django FastCGI and static files

2019-09-17 Thread Martin Jaan Leesment
Hey I'm new to serving Django website on a shared server as well as using fastcgi and .htaccess so this might be a basic question. Namely I'm having difficulties serving static content. I've tried playing with htaccess rules, but no luck yet. My project structure: myproject/ ├── myapp │ ├──

Re: Django FastCGI and static files

2019-09-17 Thread Martin Jaan Leesment
It works by moving static directory but was wondering about a more intelligent solution, that is, if it exists with fastcgi. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send

Re: Django FastCGI and static files

2019-09-28 Thread Anike Sadia
Hi pls how to leave this group On Tue, 17 Sep 2019 at 17:16, Martin Jaan Leesment wrote: > Hey > > I'm new to serving Django website on a shared server as well as using > fastcgi and .htaccess so this might be a basic question. Namely I'm having > difficulties serving static content. I've tried

Re: Django FastCGI and static files

2019-09-28 Thread Sipum
Block or mark as spam. I think it will work. Give it a try On Sat, 28 Sep, 2019, 7:30 PM Anike Sadia, wrote: > Hi pls how to leave this group > > > On Tue, 17 Sep 2019 at 17:16, Martin Jaan Leesment > wrote: > >> Hey >> >> I'm new to serving Django website on a shared server as well as using >>

Re: Django FastCGI and static files

2019-09-30 Thread Deep Sukhwani
At the end of every email, the instructions are clearly mentioned - Here it is: *To unsubscribe from this group and stop receiving emails from it, send an > email to django-users+unsubscr...@googlegroups.com > .* Hope this helps. -- Regards Deep L Sukhwani ᐧ On Sat, 28 Sep 2019 at 22:17, Sipu

Re: Django FastCGI and static files

2019-09-30 Thread Budi Hermansyah
you can collect your static files into 1 folder after deployment into server, and you can set it in base.py. then on webserver settings you can set only one static path. OR you can split static files into many folder, but in your base.py setting you put all static path using STATICFILES_DIRS then

Re: Django FastCGI and static files

2019-10-01 Thread anil polineni
hi Django project structure is clearly understandable but I want CURD Operations mini-project by using Django project On Tuesday, September 17, 2019 at 9:46:31 PM UTC+5:30, Martin Jaan Leesment wrote: > > Hey > > I'm new to serving Django website on a shared server as well as using > fastcg