Amir Afianian
Amir Afianian

Reputation: 2797

what is the best way to achieve remote storage for users' files using django

What is the best storage server mechanism for the following requirements:

I have been suggested different methods like having a web server like apache or nginx to serve the files. Others also suchested using MongoDB as the storage server. I want the implementation be as simple as possible. What would you recommend?

Upvotes: 0

Views: 174

Answers (1)

Allen Fernandes
Allen Fernandes

Reputation: 1353

If you can try moving the file storage to Amazon S3 Storage, Django Boto (https://github.com/qnub/django-boto) helps in integration and easy to use. For Better performance i would suggest virtualenv, nginx with uWSGI link: http://uwsgi-docs.readthedocs.org/en/latest/tutorials/Django_and_nginx.html

Upvotes: 1

Related Questions