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:
-
- Do you know how to configure folder access permissions?
- How to configure folder access permissions: 1. Open the nginx configuration file; 2. Add [user root] at the beginning of the file; 3. Add the server port; 4. Restart nginx.
- Nginx 4370 2020-08-19 17:23:45
-
- nginx changes request data size limit
- How to modify the request data size limit in nginx: first modify the configuration [client_max_body_size 1000m;]; then execute the [$nginx -s reload] command.
- Nginx 5519 2020-08-17 16:53:09
-
- What are the two communication methods between nginx and php?
- This article comes from the nginx tutorial. It introduces two communication methods between nginx and php. It has certain reference value and I hope it can help everyone. There are two communication methods between Nginx and PHP: unix socket and tcp socket.
- Nginx 4572 2020-08-15 16:46:59
-
- How to solve nginx startup failure
- Solution to nginx startup failure: First open the /etc/selinux/config file; then change SELINUX=enforcing to SELINUX=disabled.
- Nginx 7227 2020-08-14 17:18:31
-
- Introduction to the start and stop commands of nginx under windows
- Start command: [C:\server\nginx-1.0.2>start nginx]; stop command: [C:\server\nginx-1.0.2>nginx.exe -s stop].
- Nginx 6179 2020-08-13 17:10:44
-
- How to stop nginx service under linux
- How to stop the nginx service under Linux: 1. Execute the [ps -ef | grep nginx] command to view the nginx main process; 2. Execute the [kill -QUIT main process number] command to stop the nginx service.
- Nginx 6953 2020-08-12 17:01:33
-
- What is the method for nginx to implement page jump?
- nginx tutorial: How to implement page jump in nginx: 1. Open the configuration file; 2. Add the configuration in the server field [rewrite ^/haibian /newhaibian permanent;]; 3. Save the configuration and exit.
- Nginx 4623 2020-08-11 17:02:49
-
- How to configure nginx to prohibit directory execution of php files
- How to configure nginx to prohibit directory execution of php files: [location ~ /dir/.*.(php|php5)?$ {deny all;}]. After the configuration is completed, the web service needs to be restarted.
- Nginx 3708 2020-08-11 15:44:56
-
- Introduction to the advantages of reverse proxy
- nginx usage tutorial: This article introduces the advantages of reverse proxy to everyone, which has certain reference value. I hope it can help everyone. Advantages: 1. Protect service Anxi; 2. Service nodes focus more on business while improving performance.
- Nginx 5190 2020-08-04 17:10:18
-
- 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 6349 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 4499 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 7248 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 11614 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 7232 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 4029 2020-07-13 17:27:38