What is Nginx?
February 4, 2023
What is Nginx?
Nginx is a web server that can also be used as a
- reverse proxy
- load balancer
- HTTP cache
Nginx is known for its high concurrency, high performance and low memory usage compared to Apache.
Reverse Proxy
Nginx can be used as a reverse proxy to hide the real IP address of the application server. The benefit of using a reverse proxy is that the client does not need to know the real location of the application server, and only needs to send requests to the application server through the Nginx reverse proxy. The application server also does not need to know which client's request, just need to return the response.
Load Balance
To handle high-volume traffic, one application server is not enough, so multiple application servers are needed at the same time. Nginx can automatically distribute the Client's Request to different application servers, and the distribution algorithm can be designed by yourself. The most common algorithm is Round Robin, and other algorithms include Least Connections, Least Time, IP Hash, etc.
HTTP Cache
To improve performance, Nginx will optimize by using the HTTP cache mechanism. The process is as follows:
- Client sends a request, Nginx will hash the request information and determine whether the hash key exists in the memory: ① → ②
- If the hash key does not exist in the memory: Nginx will ask the application server for the file location, and then ask for the file. ③ → ④ → ⑤
- If it exists in the memory: Nginx will directly ask for the file. ③ → ⑤
- Return the file to the client