Home  >  Article  >  Operation and Maintenance  >  Summary of what you need to pay attention to about Nginx

Summary of what you need to pay attention to about Nginx

伊谢尔伦
伊谢尔伦Original
2017-06-13 10:26:062438browse

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

Summary of what you need to pay attention to about Nginx

##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

Summary of what you need to pay attention to about Nginx

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

Summary of what you need to pay attention to about Nginx

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

Summary of what you need to pay attention to about Nginx

##Introduction: This article focuses on configuration records, and the benefits of chroot (jail) will not be described in detail. This article is divided into three parts: configuring basic chroot jail, configuring chroot jail for nginx, and configuring chrootjail for tomcat. 1. Configure a basic chroot jail1.1. Create a directory as the root directory of the chroot jail. # mkdir /home/chroot/jail1.2. Use the ldd command to find out the command you want to run in the chroot jail...

5.

About ZKEACMS Detailed introduction

Summary of what you need to pay attention to about Nginx

Introduction: ZKEACMS Core is developed based on .net core and can be run on windows, linux, It runs cross-platform on mac. Next, let’s take a look at how to use Jexus hosting to run ZKEACMS on CentOS. Usually we deploy ASP.NET Core applications on Linux. According to Microsoft’s official documentation, we usually need Nginx with Systemd (https:// docs.microsoft.com/en-us/aspn...

6.

Detailed introduction to configuring the website

Summary of what you need to pay attention to about Nginx

Introduction: The method of binding domain name to Nginx service takes Nginx installed by YUM as an example. Domain name binding needs to be completed by editing the Nginx configuration file. The Nginx configuration file is/ etc/nginx/nginx.conf, modify the default server {...} configuration as follows: The modified meaning is: 1. When accessing www.123.com, it will jump to the /home/web1 directory; 2. Access www.abc.com, will jump to the /home/web2 directory. Restart after modification...

7.

Summary of the detailed introduction of the connection status

Summary of what you need to pay attention to about Nginx

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

8. How to check the number of concurrent connections and connection status of Nginx under Linux Detailed introduction

Summary of what you need to pay attention to about Nginx

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

Summary of what you need to pay attention to about Nginx

##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

Summary of what you need to pay attention to about Nginx

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!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn