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:
-
- How to hide index.php in nginx
- How to hide index.php in nginx: directly add the code "if (!-e $request_filename) {rewrite ^/(.*)$ /index.php/$1 last;break;}" in the vhosts.conf configuration file .
- Nginx 6074 2020-08-01 15:44:29
-
- What are the application scenarios of nginx?
- nginx application scenarios: 1. HTTP server; 2. Virtual host; 3. Reverse proxy; 4. Configuration security management. nginx can independently provide http server and can be used as a static web server. nginx can virtualize multiple websites on one server, such as virtual machines used by personal websites.
- Nginx 4353 2020-07-18 17:41:00
-
- Modify nginx upload file size configuration
- nginx usage tutorial: This article shares with you the method of modifying the size configuration of nginx upload files. It has certain reference value and I hope it can help everyone. Specific method: [client_max_body_size 100m;].
- Nginx 7052 2020-07-17 17:50:24
-
- How to solve 500, 502, 503, 504 errors in nginx
- This article introduces how to solve 500, 502, 503, and 504 errors in nginx. It has certain reference value and I hope it can help everyone. The 500 error refers to an internal server error, that is, the server encounters an unexpected situation and cannot fulfill the request.
- Nginx 11203 2020-07-15 17:39:59
-
- On the nginx server, what are the Master process and Worker process?
- The Master process is the main process, which creates work processes/threads such as Manager processes and Reactor threads. The Worker process is a working process, and all business logic is performed in this process.
- Nginx 7034 2020-07-14 17:37:06
-
- What is the difference between fastcgi and cgi
- nginx tutorial: This article introduces the difference between fastcgi and cgi. It has certain reference value and I hope it can help everyone. The difference between fastcgi and cgi is: whether to repeat the fork process and process the request.
- Nginx 3606 2020-07-13 17:27:38
-
- What are the advantages of nginx over apache?
- The advantages of nginx over apache are: 1. nginx is lightweight and takes up less memory and resources than apache; 2. nginx has strong anti-concurrency ability. Under high concurrency, nginx can maintain low resources and low consumption; 3. , nginx is highly modular in design, and writing modules is relatively simple.
- Nginx 2944 2020-07-09 17:03:20
-
- Install nginx from linux source code
- Preface nginx source code download address: wget http://nginx.org/en/download.html You can also download it in advance and upload it to the server. 1. Unzip the downloaded source code package tar –zvxf nginx-1.10.32. Unzip the downloaded source code package: tar –zvxf nginx-1.10.33. Install the extensions required for nginx: yum install -y&n...
- Nginx 189 2020-07-09 13:13:03
-
- How Nginx handles HTTP requests
- Nginx handles HTTP requests through multi-process mechanism and asynchronous mechanism. The benefits of using processes: Each process is independent of each other and does not require locking, which reduces the impact of using locks on performance and reduces programming complexity and development costs.
- Nginx 2939 2020-07-08 17:13:59
-
- How to modify the default port of nginx service
- This article comes from the nginx tutorial. It introduces how to modify the default port of the nginx service. It has certain reference value and I hope it can help everyone. Specific methods: 1. Open the nginx configuration file nginx.conf; 2. Find the server{} module and modify the default port.
- Nginx 7051 2020-07-07 17:32:46
-
- How to completely uninstall nginx
- Method to completely uninstall nginx: 1. Execute the [sudo find / -name nginx*] command to find nginx-related files; 2. Execute the [sudo rm -rf file nginx file] command to delete all nginx-related files.
- Nginx 3991 2020-07-04 17:28:13
-
- How to solve nginx: command not found issue
- The solution to the nginx: command not found problem is: 1. Open the /etc/profile file; 2. Add the configuration [PATH=$PATH:/usr/local/nginx/sbin] at the end of the file; 3. Reload the environment.
- Nginx 8157 2020-07-03 17:23:13
-
- How to build a static site
- This article comes from the nginx tutorial. It introduces how to build a static site. It has certain reference value and I hope it can help everyone. After editing the configuration file, update the nginx configuration file by executing the [nginx -s reload] command.
- Nginx 4082 2020-07-02 17:39:36
-
- nginx installation dependency package
- How to install dependency packages in nginx: 1. Execute the command [yum install pcre pcre-devel -y]; 2. Execute the command [yum install openssl openssl-devel -y]; 3. Compile the command; 4. Check the nginx configuration file.
- Nginx 6408 2020-07-01 17:09:37
-
- What are the Nginx client request configuration items?
- Nginx client request configuration items include: 1. "limit_except", which limits user requests according to the HTTP method name; 2. "client_max_body_size size", which is the maximum value of the HTTP request body; 3. "limit_rate speed", which limits the speed of requests, etc. .
- Nginx 2931 2020-07-01 10:50:39