How to Deploy a Django Project
➡️ This tutorial is also published at www.thedevspace.io .
In the Django tutorial series, we talked about how to create a basic Django application. But there is a significant part that is missing from the tutorial, that is how to deploy our app so that it is accessible to the public.
In this article, we’ll talk about how to deploy a Django project manually on a Linux server using uWSGI and Nginx. Assume you are using Ubuntu 22.4 LTS.
First of all, you must prepare your server like we discussed in this article, so that it is secure and safe to use. And also make sure your software is up to date by running the following commands.
|
|
|
|
Clone your project using Git #
After you’ve set up the server, you’ll need to upload the Django project to the server. Git is an ideal tool for this purpose. Git is an open-source version control software that can track the changes in the source code. It is designed for coordinating work among programmers.
Git should be preinstalled on your system by default, but just in case it is not there, you can install it using the following command:
|
|
And then, go to the home
directory, and clone our project from GitHub to the server.
|
|
|
|
This command will create a django-tutorial
directory and put our project in it. Here is a small Linux trick, you can check the content of a directory using the following command:
|
|
If you need to list the hidden items as well:
|
|
Next time, when you make changes to our project, instead of uploading the entire project again, you only need to run the git pull
command.
Create virtual environment & install requirements #
Now that you have cloned your Django project, you need to create an isolated virtual Python environment for it. However, on Debian based systems, the venv
package, which you’ll need to create a virtual environment, is not included by default, but you can install it using the following command:
|
|
Go to the application’s root directory:
|
|
Create a virtual environment:
|
|
Run the ls
command again, and you should see an env
directory. The virtual environment is created inside. Now, all you need to do is activate the environment and install all the necessary requirements for this project.
Activate the virtual environment:
|
|
Remember, if you install required packages without activating the virtual environment, the packages will be installed globally, instead of in the virtual environment we just created.
If the activation is successful, your terminal prompt should look like this.
|
|
(env)
means you are currently working inside a virtual environment called env
.
You can also deactivate virtual environment using the following command:
|
|
Install requirements:
|
|
Install uWSGI #
uWSGI is a software application that “aims at developing a full stack for building hosting services”. It is named after the Web Server Gateway Interface (WSGI), which was the first plugin supported by the project.
uWSGI is often used for serving Python web applications in conjunction with web servers such as Cherokee and Nginx, which offer direct support for uWSGI’s native uWSGI protocol.
Before you can install uWSGI, you need to install the Python development package first.
|
|
Next, install the latest stable version of uWSGI:
|
|
Test Your Django Project #
Now, we can test our Django project with uWSGI. First, make sure our site actually works:
|
|
And if that works, run it with uWSGI:
|
|
module mysite.wsgi
: load the specified wsgi
module.
Visit the server IP from your browser, if the site appears, it means uWSGI is able to serve your Django application from your virtualenv
, and this stack operates correctly:
|
|
Now, normally we won’t have the browser speaking directly to uWSGI. That’s a job for the web server, which will act as a go-between.
Install Nginx #
Nginx is an open-source high-performance web server. Compared to Apache, it is much more flexible and lightweight.
First, we need to add the Nginx repository:
|
|
Install Nginx using yum
command:
|
|
After this, we can start the Nginx server by typing:
|
|
Now we need to check if the Nginx server is working properly by visiting it in a web browser on port 80. You should get a message from Nginx: “Welcome to Nginx!”. If not, it is probably because something else is running on port 80, and you need to reconfigure Nginx to serve on a different port. For this tutorial, we’ll use port 8000.
Configure Nginx for Your Site #
To configure Nginx so that it works for our Django site, we need to edit the uwsgi_params
 file, which is available in the nginx
 directory of the uWSGI distribution, or from GitHub .
We need to copy this file to the Django project directory, and later we’ll need to tell Nginx to use this file.
Now create a file called django_blog_nginx.conf
in the /etc/nginx/sites-available/
directory, and add the following configurations:
|
|
This configuration file tells Nginx to serve the site on port 8000. Nginx will handle the static file and media files, as well as requests that require Django’s intervention. For a large project, it is always better to let one server handel static/media files, and another handle Django applications. But for now, this is all we need to do.
Symlink to this file from /etc/nginx/sites-enabled
so Nginx can use it:
|
|
Deploy Static Files #
Before running Nginx, we have to collect all Django static files in the static folder. First of all, we have to edit settings.py
adding:
|
|
and then run
|
|
Test Nginx Server #
Since we made changes to the Nginx server configuration, we need to restart the server so that these changes can take effect:
|
|
Upload a new image (media.png
) to the /media
directory, can then visit http://<your_domain>:8000/media/media.png
in the browser to see if Nginx is serving the media files correctly. If it doesn’t work, try stopping and starting the Nginx server again. This will inform you if there is a problem and where it is.
Run the Django Application with Nginx and uWSGI #
Now that we have uWSGI and Nginx properly installed and configured, we can start our Django application:
|
|
Configuring uWSGI to run with a .ini
file #
We can put relevant uWSGI configurations into a file, and then ask uWSGI to parse the configurations on start up.
Create a file called django_blog_uwsgi.ini
:
|
|
And run uwsgi
using this file:
|
|
Install uWSGI System-Wide #
So far, uWSGI is only installed in our virtual environment, and we’ll need it installed system-wide for deployment purposes.
Deactivate your virtual environment:
|
|
and install uWSGI system-wide:
|
|
The uWSGI wiki describes several installation procedures . Before installing uWSGI system-wide, it’s worth considering which version to choose and the most appropriate way of installing it.
Check again that we can still run uWSGI just like we did before:
|
|
Who can help me with deploying a Django project #
Webisoft can streamline the deployment process for your Django project, saving you valuable time and reducing the margin for error. Using our expertise in Linux server management and Django configurations, we offer a seamless experience from development to production. We specifically tailor our deployment strategy to work optimally with Ubuntu 22.4 LTS. By implementing security best practices and ensuring your software is up-to-date, we create a robust environment where your Django application can run efficiently and securely. With our hands-on approach, we guide you through each step of the manual deployment process, utilizing uWSGI and Nginx to achieve optimal performance and reliability.
If you think my articles are helpful, please consider making a donation to me. Your support is greatly appreciated.