0
1.3kviews
Deploy Django with Docker and AWS EC2
1 Answer
written 3.9 years ago by |
The choices made when deploying the project depend on the expected levels of traffic and number of posts that the site needs to manage.
For high performance installation we deploy the production servers with the following stack:
nginx
uwsgi
Mysql
as the databaseRabbitMQ
as the job queueCelery
for running the asynchronous jobsElasticsearch
as the search engineDocker
keeping everything runningThe conf/docker
folder has configuration files for nginx
, uwsgi
and docker-compose
.