Solution to Django's inability to access static resources with uwsgi+nginx proxy

Solution to Django's inability to access static resources with uwsgi+nginx proxy

When deploying uwsgi+nginx proxy Django, access using uwsgi is normal, but static resources cannot be accessed when using nginx proxy port access.

Solution:

  • Check the nginx startup user and grant access to static resources to this user.
  • For example, my static resource directory is: /data/django/static
  • Empower: ch mod 755 /data/django/static -R

uwsgi configuration:

# uwsig starts using the configuration file [uwsgi]
# The root directory of the project is chdir=/data/django/dailyfresh
#Specify the application of the project, different from the startup command--wsgi-filemysite/wsgi.py
#logsquery your own application namemodule=dailyfresh.wsgi:application
#the local unix socket file than commnuincate to Nginx
#Specify the file path of sock. This sock file will be configured in uwsgi_pass of nginx for communication between nginx and uwsgi. #Support ip+port mode and socket file mode #socket=/etc/uwsgi/uwsgi.sock
socket=127.0.0.1:9001
# Number of processes processes = 8
# Number of workers per process workers=5
procname-prefix-spaced=dailyfresh # uwsgi process name prefix py-autoreload=1 # py file modification, automatic loading # Specify IP port, web access entry http=0.0.0.0:9000
# Start uwsgi's username and user group uid=root
gid=root
# Enable the master process master=true
# Automatically remove unix socket and pid file when the service stops vacuum=true
# Serialize received content, thunder-lock=true if possible
# Enable threads enable-threads=true
# Set a timeout to interrupt additional requests that exceed the server's request limit harakiri=30
# Set post-buffering=4096
# Set the log directory daemonize=/var/log/uwsgi/uwsgi.log
# uWSGI process number is stored in pidfile = /etc/uwsgi/uwsgi.pid

nginx configuration:

server {
            listen 9002;
            server_name 192.168.2.100;
            access_log /var/log/test.log;
            error_log /var/log/test.log;
            charset utf-8;
            client_max_body_size 100M;
            location /static{
                    alias /data/django/dailyfresh/static;
            }
            location /media{
                    alias /data/django/dailyfresh/media;
            }
            location / {
                    include uwsgi_params;
                    uwsgi_pass 127.0.0.1:9001;
            }
            error_page 500 502 503 504 /50x.html;
            location = /50x.html {
                root html;
            }
}

This is the end of this article about the solution to the problem that uwsgi+nginx proxy Django cannot access static resources. For more related content about uwsgi+nginx proxy Django cannot access, 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 idea of ​​deploying Nginx+Uwsgi+Django project to the server
  • Django project uwsgi+Nginx nanny-level deployment tutorial implementation
  • Detailed deployment of Django uwsgi Nginx in production environment
  • Example of deploying Django project with uwsgi+nginx
  • Detailed explanation of Django+Uwsgi+Nginx to achieve production environment deployment
  • Django2+uwsgi+nginx is deployed online to the server Ubuntu16.04
  • Django + Uwsgi + Nginx to achieve production environment deployment method
  • Solve all the problems of deploying Django with nginx+uwsgi (summary)

<<:  Pure CSS to achieve cloudy weather icon effect

>>:  Solve the problem of MySQL Threads_running surge and slow query

Recommend

js method to delete a field in an object

This article mainly introduces the implementation...

How to display JSON data in HTML

background: Sometimes we need to display json dat...

JS ES new features: Introduction to extension operators

1. Spread Operator The spread operator is three d...

When MySQL is upgraded to 5.7, WordPress reports error 1067 when importing data

I recently upgraded MySQL to 5.7, and WordPress r...

MySQL horizontal and vertical table conversion operation implementation method

This article uses examples to illustrate how to i...

Example code for implementing complex table headers in html table

Use HTML to create complex tables. Complex tables...

HTML&CSS&JS compatibility tree (IE, Firefox, Chrome)

What is a tree in web design? Simply put, clicking...

How to change the system language of centos7 to simplified Chinese

illustrate When you install the system yourself, ...

Priority analysis of and or queries in MySQL

This may be an issue that is easily overlooked. F...

Summary of seven sorting algorithms implemented in JavaScript (recommended!)

Table of contents Preface Bubble Sort Basic Algor...

Detailed explanation of the abbreviation of state in react

Preface What is state We all say that React is a ...

MySQL automatically inserts millions of simulated data operation code

I use Navicat as my database tool. Others are sim...

JavaScript Snake Implementation Code

This article example shares the specific code of ...

How to use geoip to restrict regions in nginx

This blog is a work note environment: nginx versi...