Nginx implements dynamic and static separation example explanation

Nginx implements dynamic and static separation example explanation

In order to speed up the parsing of the website, dynamic pages and static pages can be parsed by different servers to speed up the parsing speed. Reduce the pressure on the original single server. To put it simply, it uses regular expressions to match and filter, and then sends them to different servers.

1. Prepare the environment

Prepare an nginx proxy for two http to handle dynamic and static respectively.

1. Configure the compiled and installed nginx as a reverse proxy upstream;

upstream static {
server 10.0.105.196:80 weight=1 max_fails=1 fail_timeout=60s;
}
upstream php {
server 10.0.105.200:80 weight=1 max_fails=1 fail_timeout=60s;
}

server {
listen server_name
#Dynamic resource loading 80;
localhost
location ~ \.(php|jsp)$ { proxy_pass http://phpserver;

proxy_set_header Host $host:$server_port; proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}

#Static resource loading location ~ \.(html|jpg|png|css|js)$ { proxy_pass http://static; proxy_set_header Host $host:$server_port; proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}

Static resource configuration---10.0.105.196

server {
listen 80;
server_name localhost;

location ~ \.(html|jpg|png|js|css)$ { root /var/www/nginx;
}
}

Upload pictures

Dynamic resource configuration: 10.0.105.200

yum install php7.1

[root@nginx-server ~]#rpm -Uvh https://mirror.webtatic.com/yum/el7/epel- release.rpm

[root@nginx-server ~]#rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic- release.rpm

[root@nginx-server ~]#yum install php71w-xsl php71w php71w-ldap php71w-cli php71w-common php71w-devel php71w-gd php71w-pdo php71w-mysql php71w-mbstring php71w-bcmath php71w-mcrypt -y

[root@nginx-server ~]#yum install -y php71w-fpm [root@nginx-server ~]#systemctl start php-fpm [root@nginx-server ~]#systemctl enable php-fpm

Edit the nginx configuration file:

[root@nginx-server ~]# cd /etc/nginx/conf.d/ [root@nginx-server conf.d]# vim phpserver.conf server {

listen 80;

server_name localhost; location ~ \.php$ {

root /home/nginx/html; #Specify the website directory

fastcgi_pass fastcgi_index fastcgi_param

#Site root directory, depends on the root configuration item

include

}

}

127.0.0.1:9000; #Specify the access address

index.php;

#Specify the default file

SCRIPT_FILENAME $document_root$fastcgi_script_name;

fastcgi_params; #Contains nginx constant definitions

When accessing a static page, the location matches (html|jpg|png|js|css) and is forwarded to the static server. The static service is

The regular match of location is used to process the request.

When accessing a dynamic page, the location matches the file ending with .\php and forwards it to the backend PHP service to process the request.

Knowledge point expansion:

Detach by request

[root@lb01 conf]# vim nginx.conf
worker_processes 1;
events {
  worker_connections 1024;
}
http {
  include mime.types;
  default_type application/octet-stream;
  sendfile on;
  keepalive_timeout 65;
upstream stack_pools {
    server 172.25.254.134:80 weight=5;
}
upstream dynamic_pools {
    server 172.25.254.135:80 weight=5;
}
  server {
    listen 80;
    server_name www.lbtest.com;
    location / {
      root html;
      index index.html index.htm;
      proxy_set_header Host $host;
      proxy_pass http://dynamic_pools;
    }
    location /image/ {
      proxy_set_header Host $host;
    proxy_pass http://stack_pools;
    }
    location /dynamic/ {
      proxy_set_header Host $host;
    proxy_pass http://dynamic_pools;
    }
  }
}
[root@lb01 conf]# nginx -s reload

Separate by extension

[root@lb01 conf]# vim nginx.conf

 worker_processes 1;
events {
  worker_connections 1024;
}
http {
  include mime.types;
  default_type application/octet-stream;
  sendfile on;
  keepalive_timeout 65;
upstream stack_pools {
    server 172.25.254.134:80 weight=5;
}
upstream dynamic_pools {
    server 172.25.254.135:80 weight=5;
}
  server {
    listen 80;
    server_name www.lbtest.com;
    location / {
      root html;
      index index.html index.htm;
      proxy_set_header Host $host;
      proxy_pass http://dynamic_pools;
    }
    location ~ .*.(jpg|png|gif|css|js|swf|bmp|jsp|php|asp)$ {
    proxy_set_header Host $host;
    proxy_pass http://stack_pools;
    }
  }
}
[root@lb01 conf]# nginx -s reload

This is the end of this article about the example of implementing dynamic and static separation with nginx. For more relevant content about implementing dynamic and static separation with nginx, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Basic configuration example of Nginx with Apache or Tomcat for dynamic and static separation
  • Using Nginx+uWsgi to separate the dynamic and static parts of Python's Django framework site
  • Simple implementation of nginx+tomcat reverse proxy and dynamic and static separation
  • Detailed explanation of nginx to separate static and dynamic tomcat
  • nginx realizes load balancing and dynamic and static separation
  • Nginx sample code for implementing dynamic and static separation
  • Detailed example of deploying Nginx+Apache dynamic and static separation
  • Sample code for nginx to achieve dynamic and static separation
  • Nginx dynamic and static separation implementation case code analysis
  • Detailed explanation of the process of realizing dynamic and static separation in Springmvc nginx
  • Docker Nginx container and Tomcat container to achieve load balancing and dynamic and static separation operations
  • Analysis of the principle of Nginx+Tomcat to achieve load balancing and dynamic and static separation
  • The principle and configuration of Nginx load balancing and dynamic and static separation
  • Example of how nginx implements dynamic and static separation
  • Detailed instructions for nginx from installation to configuration (installation, security configuration, anti-hotlinking, dynamic and static separation, HTTPS configuration, performance optimization)
  • Implementation of Nginx+Tomcat load balancing and dynamic and static separation cluster
  • Server load balancing nginx+tomcat to achieve dynamic and static separation
  • Nginx dynamic and static separation configuration implementation and description

<<:  JS implements the rock-paper-scissors game

>>:  MySQL 8.0.18 installation tutorial under Windows (illustration)

Recommend

Vue uses echarts to draw an organizational chart

Yesterday, I wrote a blog about the circular prog...

Vue implements picture verification code when logging in

This article example shares the specific code of ...

Common problems in implementing the progress bar function of vue Nprogress

NProgress is the progress bar that appears at the...

Detailed explanation of MYSQL large-scale write problem optimization

Abstract: When people talk about MySQL performanc...

Detailed explanation of how to view the current number of MySQL connections

1. View the detailed information of all current c...

About the problems of congruence and inequality, equality and inequality in JS

Table of contents Congruent and Incongruent congr...

CSS sets the list style and creates the navigation menu implementation code

1. Set the list symbol list-style-type: attribute...

Specific use of MySQL internal temporary tables

Table of contents UNION Table initialization Exec...

How to use Vue cache function

Table of contents Cache function in vue2 Transfor...

A detailed introduction to Tomcat directory structure

Open the decompressed directory of tomcat and you...

Solution to the error in compiling LVGL emulator on Linux

Table of contents 1. Error phenomenon 2. Error An...

Tips for data statistics in MySQL

As a commonly used database, MySQL requires a lot...

Secondary encapsulation of element el-table table (with table height adaptation)

Preface During my internship at the company, I us...