nginx parameter tuning worker_processes 3; //The number of cpu cores -1, the effect is better when used #worker_processes 4;#worker_cpu_affinity 0001 0010 0100 1000;#error_log logs/error.log;#error_log logs/error.log notice;#error_log logs/error.log info;#pid logs/nginx.pid;events { use epoll; worker_connections 8192; } http { include &
1. Detailed introduction to parameter tuning
##Introduction: nginx parameter tuning worker_processes 3; //The number of cpu cores is -1, and the effect is better when used #worker_processes 4; #worker_cpu_affinity 0001 0010 0100 1000; #error_log logs/error.log; #error_log logs/error. log notice;#error_log logs/error.log...
2. Detailed introduction to cross-domain settings
Introduction: When working on a project, a structural design with front-end and back-end separation was adopted. The rest-style http interface designed in the background needs to satisfy both background service calls and It also needs to be satisfied that the front-end directly uses ajax calls, so cross-domain problems are encountered. The back-end uses the spring mvc structure. The HTTP method supports get, post, put, delete, option and other methods. Because when the post is called, the front-end http will first Use option to the server, and then submit the request data after 204, except at the nginx level...
3. 10 recommended articles about cluster deployment
Introduction: This article mainly introduces Linux server cluster deployment: nginx configuration, for students who are interested in PHP tutorials You can refer to it.
4. 10 recommended articles about the php chroot() function
5.
About ZKEACMS Detailed introduction
6.
Detailed introduction to configuring the website
7.
Summary of the detailed introduction of the connection status
Introduction: Check the number of concurrent connections and connection status of Nginx, etc. under Linux. 1. Check the number of concurrent requests of the Web server (Nginx Apache) and its TCP connection status: netstat -n | awk '/^tcp/ {++S[$NF]} END {for(a in S) print a,&n Introduction: Check the number of concurrent connections and connection status of Nginx, etc. under Linux. 1. Check the number of concurrent requests of the Web server (Nginx Apache) and its TCP connection status: netstat -n | awk & 39; 9. About NGINX reverse in LINUX A detailed introduction to the TOMCAT cluster under the agent ##Introduction: The editor will bring you an article below TOMCAT cluster under NGINX reverse proxy in LINUX (detailed explanation). The editor thinks it’s pretty good, so I’ll share it with you now and give it as a reference. Let’s follow the editor and take a look. 10. Detailed graphic and text explanation of Nginx installation tutorial under Linux Introduction: This article mainly introduces the installation tutorial of Nginx in Linux in detail. It has certain reference value. Interested friends can refer to it [Related Q&A recommendations]: web - nginx location search algorithm problem! ? How does nginx proxy redirect websites between multiple domain names url-rewrite - Please tell me how to modify this rewrite to be readable by nginx Code haproxy How to get the user’s real IP sent from nginx? How to verify the permissions of the upload module in nginx?
The above is the detailed content of Summary of what you need to pay attention to about Nginx. For more information, please follow other related articles on the PHP Chinese website!