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:
-
- 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 3298 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 7732 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 3208 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 3717 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 5162 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 25764 2020-06-03 17:16:40
-
- What are the advantages of nginx?
- The advantages of nginx are reflected in: 1. As a web server, nginx processes static files and index files, and the automatic indexing efficiency is very high; 2. As a proxy server, nginx can implement cache-free reverse proxy acceleration and improve the website running speed.
- Nginx 5410 2020-06-01 15:57:17
-
- What are the similarities and differences between nginx and apache?
- Nginx usage tutorial: The similarities and differences between nginx and apache are: 1. They are both HTTP server software, but apache has a slower processing speed and takes up more memory resources; 2. Functionally, they both adopt modular structure design, but apache has The module supports static compilation, and nginx modules are all statically compiled.
- Nginx 4182 2020-05-30 16:42:11
-
- How to install nginx in CentOS7 environment
- How to install nginx in CentOS7 environment: 1. Add nginx repository; 2. Install nginx; 3. Start nginx, such as [sudo systemctl start nginx].
- Nginx 3002 2020-05-06 16:33:42
-
- How to uninstall nginx in linux environment
- How to uninstall nginx in Linux environment: 1. [rm -rf /etc/nginx/]; 2. [rm -rf /usr/sbin/nginx]; 3. [apt-get remove nginx*].
- Nginx 5034 2020-04-29 16:42:19
-
- Solve the upload file size limit problem by modifying the nginx configuration file
- This article comes from the nginx usage tutorial column. This article introduces how to solve the upload file size limit problem by modifying the nginx configuration file. It has certain reference value and I hope it can help everyone.
- Nginx 5840 2020-04-21 16:15:54
-
- What should I do if an error occurs when nginx executes the sbin/nginx -s reload command?
- The solution to the error when nginx executes the sbin/nginx -s reload command is to use the nginx -c parameter to specify the location of the nginx.conf file.
- Nginx 4852 2020-04-01 16:54:45
-
- Introduction to nginx shutdown/restart/start method
- This article comes from the nginx tutorial column. It introduces the methods of shutting down/restarting/starting nginx. It has certain reference value and I hope it can help students in need. Close: [systemctl stop nginx]; start: [service nginx start].
- Nginx 3268 2020-03-18 18:00:25
-
- Detailed explanation of nginx event-driven process based on epoll model
- This article first explains the implementation principle of the epoll model, and then explains from the source code level how nginx implements the event-driven model based on the epoll model.
- Nginx 5132 2020-02-01 15:06:00
-
- Detailed explanation of the configuration method of nginx hiding index.php and enabling pathinfo mode
- nginx forwards php to php-fpm through location rule matching, obtains the result after processing, and returns it to the client. The forwarding mode can be through unix sock or tcp socket.
- Nginx 5734 2020-01-31 18:58:10