2👍
✅
how to deploy a Django project on a Linux server with Apache/mod_WSGI
The Bitnami AMI already comes with all this configured. Once installed try going to the EC2 public url
on the default 8000
port and you will see the demo django project setup there. You can add your own project once you have logged into the machine via putty check the /home/bitnami/
directory for the demo project. Copy your project, configure your database The other question is: I want to use Postgres. Am I free to install this on the server
Postgres
and Mysql
are already installed the same way you would do on your local machine. The in your project do ./manage.py runserver 0.0.0.0:9000
since the 8000
port is already running another application.
Source:stackexchange.com