1. Create Project [ for project structure] mkdir django_project cd django_project virtualenv env source env/bin/activate pip3 install django // Set up static file & media file // setting.py //import os //at the end of file STATIC_ROOT = os.path.join(BASE_DIR, "static/") // collect static file python3 manage.py collectstatic 2. Create site for django sudo nano /etc/apache2/sites-available/djangoproject.conf //Add this in conf file with your domain and directory <VirtualHost *:80> ServerAdmin admin@djang...