How to solve high concurrency in Nginx implementation

What is dynamic and static separation 1. Dynamic static separation is to separate dynamic resources (jsp/ftl) from static resources (img/css/js), so as to improve the response speed of the website. 2. In the traditional architecture mode, static resources (js, css, img) and dynamic resources (jsp, ftl) are stored on the same server. tomcat its ...

Posted by tamilmani on Sun, 13 Feb 2022 08:41:34 +0100

centos7 build LNMP environment - compile and install & yum install - super detailed

1. First understand the difference between compilation and installation and yum installation. Install centos virtual machine under windows, which was written before. Portal~~ Compile and install: It can be installed on demand. It can be installed in whatever directory you want.Parameters can be setYou can install the version you wan ...

Posted by sumitnice@rediffmail.com on Fri, 11 Feb 2022 06:10:03 +0100

Vue cli package and deploy nginx

Vue cli is packaged and deployed to nginx server 1. I directly package npm run build, and open index. Under dist directory HTML , a blank page appears on the page , no "NODE ENV" is that I didn't specify which environment to package when packaging , the correct packaging is npm run build:prod 2. With regard to the setting of mode ...

Posted by Squiggles on Thu, 10 Feb 2022 19:17:11 +0100

Build linux + nginx + PHP FPM MySQL (MariaDB) environment

Build linux + nginx + PHP FPM MySQL (MariaDB) environment 1.Linux selects centos7 installed before Thoughts on security reinforcement of mainframe based on CentOS 7 Although there are a lot of data summary and reference here, what you can remember is that you know the significance of reinforcement. In other words, you have really attac ...

Posted by Darghon on Thu, 10 Feb 2022 17:04:27 +0100

Python crawler diary 02 - Data Visualization

PYTHON crawler diary 02 - Data Visualization Record your learning reptile diary 1. Environmental preparation linux environment python3 6 + (there are many online tutorials here, so choose one that is more effective Installing Python 3 on Linux)) linux nginx environment (choose your favorite version) https://nginx.org/download/ ) linux guni ...

Posted by awared on Thu, 10 Feb 2022 15:03:40 +0100

Load balancing strategy for the most complete Nginx server

Summary of load balancing strategy of Nginx server 1, On load balancing of Nginx In the server cluster, Nginx acts as a proxy server (i.e. reverse proxy). In order to avoid excessive pressure on a single server, it forwards requests from users to different servers.   2, Nginx load balancing strategy Load balancing is used to select a serve ...

Posted by duckula on Thu, 10 Feb 2022 08:24:14 +0100

Load balancing proxy

Load balancing is used to schedule nodes, so you only need to set the transfer on the server equipped with load balancing The conf file can be directed to the relevant server. It can be tested by a single server first, but since it is a scheduling server, it must not be one server, Load balancing transfers the of a single machine conf conf ...

Posted by cags on Wed, 09 Feb 2022 23:42:25 +0100

nginx installation and building lnmp and Forum

nginx installation and operation control Compile and install nginx Install support software The configuration and operation of nginx need the support of pcre, zlib and other software packages Install pcre and zlib You need to mount the Centos image during installation. Clear the yum source [root@centos ~]# yum -y install pcre-devel ...

Posted by mechamecha on Wed, 09 Feb 2022 23:00:09 +0100

[learning notes] overview of Nginx core

Nginx introduce Nginx is a high-performance HTTP and reverse proxy web server. It has a very powerful ability to handle high concurrency and can withstand the test of high load. Some reports show that it can support up to 50000 concurrent connections. Its characteristics are less memory and concurrent capability. In fact, nginx's concurrent ...

Posted by Daniel0 on Tue, 08 Feb 2022 09:10:41 +0100

Nginx_ Generation, principle and simple case

What functions does Nginx have and what problems does it solve? Imagine a scenario. What if the server can't bear the increased number of stand-alone application users? A very effective way is to split several servers, one into many. The traffic borne by one server is divided into multiple servers. This is a good solution. The problem is how ...

Posted by twistedmando on Mon, 07 Feb 2022 23:39:03 +0100