current location:Home > Technical Articles > Operation and Maintenance > Nginx
- Direction:
- All web3.0 Backend Development Web Front-end Database Operation and Maintenance Development Tools PHP Framework Daily Programming WeChat Applet Common Problem Other Tech CMS Tutorial Java System Tutorial Computer Tutorials Hardware Tutorial Mobile Tutorial Software Tutorial Mobile Game Tutorial
- Classify:
-
- What does reverse proxy mean?
- Reverse proxy means that users do not need to know the address of the target server, nor do they need to make any settings on the user side. They can directly obtain the resources of the target server by accessing the reverse proxy server. Reverse proxy improves the security of internal servers and speeds up access to internal servers.
- Nginx 16366 2020-06-28 14:49:01
-
- What are the modes for nginx to implement load balancing?
- This article comes from the nginx tutorial. It introduces several modes of nginx to achieve load balancing. It has certain reference value and I hope it can help everyone. nginx implements load balancing mode: 1. Polling; 2. ip_hash; 3. url_hash; 4. fair.
- Nginx 8114 2020-06-24 17:28:38
-
- What are the characteristics of nginx
- The characteristics of nginx are: 1. High scalability; 2. High reliability; 3. Low memory consumption; 4. High concurrency; 5. Hot deployment; 6. Open source protocol. nginx is an asynchronous architecture web server that can also be used as a reverse proxy, load balancer and HTTP cache.
- Nginx 7008 2020-06-24 13:31:23
-
- What are the ways to implement current limiting in nginx?
- There are three ways for nginx to implement current limiting, namely: 1. limit_conn_zone; 2. limit_req_zone; 3. ngx_http_upstream_module.
- Nginx 3766 2020-06-22 17:08:08
-
- How to run and control nginx
- This article comes from the nginx tutorial. It introduces the method of running and controlling nginx. It has certain reference value and I hope it can help everyone. How to start nginx: [/usr/local/nginx/sbin/nginx].
- Nginx 3243 2020-06-20 17:18:02
-
- How to configure nginx reverse proxy
- The method to configure reverse proxy in nginx is: 1. First enter the main configuration file of nginx; 2. Add the default URL in the location / of the server block of the http module; 3. Execute the [nginx -s reload] command to reload.
- Nginx 22501 2020-06-19 16:29:39
-
- Introduction to common nginx commands
- Common nginx commands: 1. Check the version number [nginx -v]; 2. Check the nginx compilation parameters [nginx -V]; 3. Restart and reload the configuration file [nginx.conf/usr/local/nginx/sbin/ nginx -s reload].
- Nginx 3752 2020-06-17 16:59:55
-
- Introduction to common algorithms for load balancing
- nginx tutorial: Commonly used algorithms for load balancing: 1. Polling, polling is a relatively basic and simple algorithm in load balancing; 2. Weighted polling, in weighted polling, each server will have its own weight; 3. IP hashing, this algorithm can ensure that requests from the same IP are mapped to the same server.
- Nginx 4087 2020-06-16 16:40:13
-
- nginx interface reverse proxy configuration introduction
- As a front-end development, debugging the interface and sending the code to the test server every time is very time-consuming and labor-intensive. In order to improve efficiency, nginx reverse proxy was thought of to solve this problem.
- Nginx 3750 2020-06-16 09:10:10
-
- Introduction to the main features of nginx
- Introduction to the main features of nginx: 1. High concurrent connections; 2. Low memory consumption; 3. Simple configuration; 4. Low cost; 5. Support rewrite rewriting rules; 6. Built-in health check function; 7. Save bandwidth; 8. Reflection to the agent.
- Nginx 3427 2020-06-15 16:56:22
-
- Analysis of the principle of nginx solving cross-domain problems
- This article comes from the nginx tutorial. It analyzes the principle of nginx solving cross-domain problems. It has certain reference value and I hope it can help everyone. Principle: Use the nginx server to intercept cross-domain requests, and then proxy the requests, so that you can bypass the browser's same-origin policy.
- Nginx 7894 2020-06-13 16:30:33
-
- Forward proxy and reverse proxy
- A forward proxy is a server located between the client and the origin server. The client sends a request to the proxy and specifies the target (original server). The proxy then forwards the request to the origin server and returns the obtained content to the client.
- Nginx 3361 2020-06-12 17:03:28
-
- How nginx achieves high performance
- The way nginx achieves high performance is: 1. Time-driven model, nginx is based on asynchronous and non-blocking event-driven model; 2. Multi-process mechanism; 3. Memory pool; 4. Modular design, the highly modular design is nginx's Architecture basics.
- Nginx 3855 2020-06-08 17:31:50
-
- Start nginx from command line
- This article comes from the nginx usage tutorial. It introduces the method of starting nginx from the command line. It has certain reference value and I hope it can help everyone. The method to start nginx from the command line is: [start nginx].
- Nginx 5305 2020-06-04 16:55:56
-
- What are the methods to stop nginx service?
- Methods to stop the nginx service are: 1. Stop the service calmly, [nginx -s quit]; 2. Stop the service immediately, [nginx -s stop]; 3. Stop systemctl, [systemctl stop nginx.service].
- Nginx 25929 2020-06-03 17:16:40