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 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 5548 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 4381 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 3129 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 5220 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 6116 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 5195 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 3414 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 5294 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 5988 2020-01-31 18:58:10
-
- Detailed explanation of nginx location directive
- Starting with ^~, note that this is not a regular expression (it is a string match with increased priority) – its purpose is to take precedence over regular expression matching. If the location is the best match, regular expression detection is no longer performed.
- Nginx 3261 2020-01-29 13:24:02
-
- Explain the implementation details of nginx event module
- In the article "Detailed Explanation of the nginx Event Module Structure", we explain the overall workflow of the nginx event module, and focus on the role of each method of organizing the event module. This article mainly focuses on this entire process, starting from the source code Explain the implementation details of nginx event module from the perspective of
- Nginx 3103 2020-01-21 17:28:58
-
- Detailed explanation of nginx event module structure
- The event module is one of the core modules of nginx. The processing of client requests and the execution of command line instructions in nginx are driven by the event module. Therefore, mastering the implementation principle of the event module is of great significance for us to understand the overall architecture of nginx.
- Nginx 3588 2020-01-21 15:26:08
-
- nginx uses geoip for regional restrictions
- Distinguish domestic or foreign through IP, thereby jumping to different pages, and finally use nginx's third-party module: geoip to achieve; GeoIP filter adds information about the geographical location of the IP address based on data from the Maxmind GeoLite2 database.
- Nginx 4913 2020-01-13 15:26:31
-
- What are the advantages of using nginx
- The official test of nginx can support 50,000 concurrent connections; the Nginx server is specially developed for performance optimization. It supports the kernel Poll model and can withstand the test of high load. The Nginx server adopts phased resource allocation technology, which makes its CPU and memory usage very low. Supports Rewrite rewrite rules.
- Nginx 5021 2020-01-07 15:03:38
-
- What are the benefits of using multiple processes in nginx?
- First of all, for each worker process, it is an independent process and does not need to be locked, so the overhead caused by locking is eliminated. At the same time, it will be much more convenient during programming and problem finding. Using independent processes can prevent each other from affecting each other. After one process exits, other processes are still working and the service will not be interrupted.
- Nginx 4162 2019-12-31 14:57:59