AWS Tip

Best AWS, DevOps, Serverless, and more from top Medium writers .

Follow publication

Django Channels with Daphne, Gunicorn and Nginx on AWS, Google Cloud, Azure, DigitalOcean: All In One Guide

Saurabh
AWS Tip
Published in
11 min readMar 11, 2021

--

Introduction

Prerequisites and Goals

Installation of Required Packages on our Ubuntu Server

Login to Ubuntu Server via SSH

Ubuntu User Creation

Installation of Server Dependencies

Setup of PostgreSQL Database and User

Python Virtual Environment Setup

Bring your Django Project to the Picture

DATABASES = {    
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'djangoprojectdb',
'USER': 'djangoprojectuser',
'PASSWORD': 'mypassword123',
'HOST': 'localhost',
'PORT': '',
}
}
STATIC_URL = '/static/'
STATIC_ROOT = os.path.join(BASE_DIR, "static")
MEDIA_URL='/media/'
MEDIA_ROOT = os.path.join(BASE_DIR, "media")
python manage.py makemigrations
python manage.py migrate
python manage.py collectstatic

Create a Gunicorn systemd Service

sudo systemctl start gunicorn
sudo systemctl enable gunicorn
OUTPUT:
djangoproject djangoproject.sock
sudo systemctl daemon-reload
sudo systemctl restart gunicorn

Nginx Configuration

upstream channels-backend {
server localhost:8001;
}
server { listen 80;
server_name server_domain_or_IP;
location = /favicon.ico { access_log off; log_not_found off; }
location /static/ {
root /home/saurabh/djangoproject;
}
location /media/ {
root /home/saurabh/djangoproject;
}
location / {
include proxy_params;
proxy_pass http://unix:/home/saurabh/djangoproject.sock;
}
location /ws/ {
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_redirect off;
proxy_pass http://127.0.0.1:8001;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Host $server_name;
}}
sudo ufw delete allow 8000
sudo ufw allow 'Nginx Full'

Redis Setup for Django Channels

# If you run Redis from upstart or systemd, Redis can interact with your
# supervision tree. Options:
# supervised no - no supervision interaction
# supervised upstart - signal upstart by putting Redis into SIGSTOP mode
# supervised systemd - signal systemd by writing READY=1 to $NOTIFY_SOCKET
# supervised auto - detect upstart or systemd method based on
# UPSTART_JOB or NOTIFY_SOCKET environment variables
# Note: these supervision methods only signal "process is ready."
# They do not enable continuous liveness pings back to your supervisor.
supervised systemd
sudo apt install net-tools
sudo netstat -lnp | grep redis
sudo systemctl restart redis.service

Daphne Setup for Django Channels

systemctl daemon-reload
systemctl start daphne.service
systemctl status daphne.service
systemctl daemon-reload
sudo systemctl start daphneservice
sudo systemctl enable daphneservice
ufw allow 8001
systemctl status daphneservice.service
systemctl status daphne.service
sudo certbot --nginx -d <your-domain-name.com> -d www.<domain-name.com>
sudo systemctl status certbot.timer
sudo certbot renew --dry-run

Nginx Server Error Logs

sudo tail -F /var/log/nginx/error.log

Conclusion

--

--

Published in AWS Tip

Best AWS, DevOps, Serverless, and more from top Medium writers .

Written by Saurabh

SDE | Python | Django | Data Engineer | Cloud Technologies

Responses (3)

Write a response