1. Virtual environment virtualenv installation 1. Install virtualenv
2. Create a directory and transfer the project files
3. Create an independent operating environment-naming
4. Enter the virtual environment
5. Install third-party libraries in the virtual environment and import the required environment (export command: pip3 freeze > packages.txt)
6. Exit venv1 environment
7. How does virtualenv create an “independent” Python runtime environment? The principle is very simple, just copy the system Python to the virtualenv environment, 2. Django configuration 1.settings.py DEBUG = False #debug changed to false ALLOWED_HOSTS = ['*'] # Change the access address to "*" to indicate all STATIC_ROOT = os.path.join(os.path.dirname(BASE_DIR),"static") #The directory accessed by nginx is placed in the previous static directory. You can customize the absolute path STATIC_URL = '/static/' STATICFILES_DIRS = [os.path.join(BASE_DIR,"static"),] MEDIA_URL = '/archive/' MEDIA_ROOT = os.path.join(os.path.dirname(BASE_DIR), 'archive') #Static files uploaded by users, such as avatars After the configuration is complete, run 2.urls.py from django.urls import path, re_path from django.conf import settings from django.views.static import serve urlpatterns = [ re_path(r'^archive/(?P<path>.*)$', serve, {'document_root': settings.MEDIA_ROOT}, name='archive'), #path of the file uploaded by the user('favicon.ico', serve,{'path': 'img/favicon.ico','document_root':settings.STATIC_ROOT}), #Global favicon.ico icon] 3. Install and configure uwsgi 1. Enter the virtual environment venv1 and install uwsgi (it is best to install it outside the virtual environment)
2. Configure the startup file (you can put it in any directory, I put it in venv1) #Add configuration options [uwsgi] #Configure the socket connection to nginx socket=127.0.0.1:8000 #http=0.0.0.0:8000 #http connection #Configure the project path, the directory where the project is located chdir = /opt/My/Myproject #Configure the wsgi interface module file path, that is, the directory name where the wsgi.py file is located wsgi-file = Myproject/wsgi.py #Configure the number of processes started processes=4 #Configure the number of threads for each process threads=2 #Configure the startup management master process master=True #Virtual environment directory home=/opt/My/venv1 #Configure the process number file for storing the main process (I commented it out, it is said to conflict with the supervisor log) #pidfile=uwsgi.pid #Configure dump logging (same as above) #daemonize=uwsgi.log 3. Start by specifying a configuration file
4. Install and configure nginx 1. Install nginx on centos8 (direct yum installation)
2. Configure nginx.conf user nginx; worker_processes 2; #Number of processes error_log /var/log/nginx/error.log; pid /run/nginx.pid; # Load dynamic modules. See /usr/share/doc/nginx/README.dynamic. include /usr/share/nginx/modules/*.conf; events { worker_connections 1024; } http { log_format main '$remote_addr - $remote_user [$time_local] "$request" ' '$status $body_bytes_sent "$http_referer" ' '"$http_user_agent" "$http_x_forwarded_for"'; access_log /var/log/nginx/access.log main; sendfile on; tcp_nopush on; tcp_nodelay on; keepalive_timeout 65; types_hash_max_size 2048; include /etc/nginx/mime.types; default_type application/octet-stream; # Load modular configuration files from the /etc/nginx/conf.d directory. # See http://nginx.org/en/docs/ngx_core_module.html#include # for more information. #include /etc/nginx/conf.d/*.conf; server { listen 80;#Listen port#listen [::]:80 default_server; server_name 192.168.3.119;# Domain name or IP #root /usr/share/nginx/html; # Load configuration files for the default server block. #include /etc/nginx/default.d/*.conf; charset utf-8; location /static { alias /opt/My/static; #Static file address (STATIC_ROOT) } location / { include uwsgi_params; uwsgi_pass 0.0.0.0:8000; #project port number uwsgi_param UWSGI_SCRIPT Myproject.wsgi; #project wsgi.py directory uwsgi_param UWSGI_CHDIR /opt/My/Myproject; #project directory} } } 3. Start nginx
5. Install and configure supervisor 1. Install supervisor
2. Generate configuration files to the etc directory through commands (can be customized)
3. Add the following code at the end of the configuration file [program:myname] #Task name command=/opt/my/venv1/bin/uwsgi --ini /opt/my/venv1/uwsgi.ini #The command executed runs uwsgi. uwsgi is in the virtual environment [program:nginx] command=/usr/sbin/nginx #Run nginx 4. Start supervisor supervisord -c /etc/supervisord.conf #Start supervisor supervisorctl -c /etc/supervisord.conf #Enter the supervisor interactive interface 5. Supervisor Command start myname #Start\ stop myname #Stop>> You can write the task name or all to indicate all restart myname #Restart/ This is the end of this article about the tutorial on how to deploy nginx+uwsgi in Django project under Centos8. For more relevant content about deploying nginx+uwsgi in Django project, 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:
|
<<: JavaScript MouseEvent Case Study
>>: Problems encountered when installing mysql8.0.15 winx64 on Win10 and connecting to the server
Preface Recently, I was analyzing the startup pro...
The inline-block property value becomes very usef...
Preface For tree-structured data in the database,...
vue+element UI encapsulates a public function to ...
This article lists some tips and codes about form...
The MySQL built-in date function TIMESTAMPDIFF ca...
Environment: (docker, k8s cluster), continue with...
Jenkins configuration of user role permissions re...
The main part of the page: <body> <ul id...
When we develop a single-page application, someti...
Preface I have been busy developing a cold chain ...
Preface: When we need to store decimals and have ...
From the backend to the front end, what a tragedy....
Table of contents Effect Start creating text Firs...
Table of contents 1. Stored Procedure 1.1. Basic ...