Detailed tutorial on deploying Django project under CentOS

Detailed tutorial on deploying Django project under CentOS

Basic Environment

  • Pagoda installation service
  • [Python Project Manager] installed in the pagoda
  • Installed in the pagoda [Nginx]

Send the Django project code to the server

There are two ways to put the code on the server:

  • Method 1: Install Git on the server and clone the code to the server via Git
  • Method 2: Upload the code via Baota's FTP tool

Note: Create a new folder in the directory: /www/wwwroot/ and put the code into the new directory

Creating a Python (Django) Project

Now we start creating a python project. Open the Python Project Manager on the homepage and click Add Project. Fill data:
* Project name: Customizable
* Path: Locate the path where the manage.py file is located
* Python version: Select the Python version corresponding to your project
* Framework: Choose Django
* Startup method: uswgi
* Startup file/file plus: locate the path where wsgi.py is located
* Port: You can customize it, set the port number after 1024
* Check whether to install module dependencies and start at boot, click OK, and then wait for creation.

Set up website service and configure static file proxy

We have already started the above operations internally. The next step is to set it up as a website service, provide external access, and set up nginx proxy to load static files.

In the Python Project Manager, click [Mapping] and set the domain name (or external IP).

After the mapping is successful, check it in the [Website] menu on the panel sidebar. (It can be accessed externally at this point. But there are no static files)

Click on the domain name or IP we just mapped on the website, a pop-up window will appear, select Reverse Proxy -> Configuration File

Find a gap to add configuration for static files and media resources.

About static files: It is the location where css and js files are stored. Named static in the Django framework. https://my.openwrite.cn/logout

About media resources: For example, the storage location of pictures uploaded by users is generally named media. Just write whatever name you set.

location /static/ {
alias /www/wwwroot/myblog/static/;
}
location /media/ {
alias /www/wwwroot/myblog/media/;
}

Just follow the file path settings. You only need to replace the red box with your path, and leave the rest unchanged.

Next, go back to the home page of the panel, click Python Project Manager, and select the project to restart.

After the restart is complete, click Nginx to reload the configuration.

At this point, everything is fine! You can access it through the domain name or IP you set.

This is the end of this article about the detailed tutorial on how to deploy Django projects on CentOS. For more information about how to deploy Django projects on CentOS, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Detailed explanation of the deployment of Django to CentOS7
  • Deploy the Django project to the CentOs server
  • Detailed explanation of the whole process of centos7+django+python3+mysql+Alibaba Cloud deployment project
  • Tutorial on deploying nginx+uwsgi in Django project under Centos8
  • How to deploy Django service nginx+uwsgi on Centos
  • Detailed tutorial on deploying Django project using Docker on centos8
  • How to deploy Django project to CentOS

<<:  js implements shopping cart addition and subtraction and price calculation

>>:  MySql Installer 8.0.18 Visual Installation Tutorial with Pictures and Text

Recommend

Abbreviation of HTML DOCTYPE

If your DOCTYPE is as follows: Copy code The code ...

In-depth understanding of the role of Vuex

Table of contents Overview How to share data betw...

Four ways to compare JavaScript objects

Table of contents Preface Reference Comparison Ma...

XHTML 2.0 New Features Preview

<br />Before browsers can handle the next ge...

Vue implements paging function

This article example shares the specific code of ...

Several solutions for forgetting the MySQL password

Solution 1 Completely uninstall and delete all da...

Native js custom right-click menu

This article example shares the specific code of ...

How to permanently change the host name in Linux

If you want to change your host name, you can fol...

Vue encapsulates the public function method of exporting Excel data

vue+element UI encapsulates a public function to ...

Detailed explanation of Angular data binding and its implementation

Table of contents Preface What is data binding? T...

Detailed explanation of several ways to create objects and object methods in js

This article is the second article about objects ...

Detailed explanation of JSONObject usage

JSONObject is just a data structure, which can be...

Install MySQL (including utf8) using Docker on Windows/Mac

Table of contents 1. Docker installation on Mac 2...

Detailed explanation of MySQL user rights management

Table of contents Preface: 1. Introduction to Use...