Re: Django clustering - How to manage Image uploading

2015-09-09 Thread nsbk
Or set up an NFS share if you don't want to rely on third party services https://help.ubuntu.com/14.04/serverguide/network-file-system.html On Wednesday, 9 September 2015 13:54:46 UTC+2, Gabriele Morgante wrote: > > Hi, > > I developed a Django 1.8.4 webapp and now I've to deploy it in production

Re: Django clustering - How to manage Image uploading

2015-09-09 Thread Robin Lery
You upload all your images into s3. On 9 Sep 2015 17:23, "Gabriele Morgante" wrote: > Hi, > > I developed a Django 1.8.4 webapp and now I've to deploy it in production > environment. The app allows users to upload images on the server. My > problem is that in a production environment I've many se

Re: Django clustering - How to manage Image uploading

2015-09-09 Thread Andreas Kuhne
I would use something like Amazon S3 to store the images. I think that's the easiest way to do it. If you use the django-storages plugin, you can configure your servers to talk to S3 just like they were using local storage. You will never have any problems with diskspace and all of your servers wil

Django clustering - How to manage Image uploading

2015-09-09 Thread Gabriele Morgante
Hi, I developed a Django 1.8.4 webapp and now I've to deploy it in production environment. The app allows users to upload images on the server. My problem is that in a production environment I've many servers with django deployed and a load balancer. Than, how can I manage Image uploading in a