系统相关
首页 > 系统相关> > nginx - basic

nginx - basic

作者:互联网

nginx has one master process and several worker processes. The main purpose of the master process is to read and evaluate configuration, and maintain worker processes. Worker processes do actual processing of requests. nginx employs event-based model and OS-dependent mechanisms to efficiently distribute requests among worker processes. The number of worker processes is defined in the configuration file and may be fixed for a given configuration or automatically adjusted to the number of available CPU cores

 

 

 

   

The way nginx and its modules work is determined in the configuration file. By default, the configuration file is named nginx.conf and placed in the directory /usr/local/nginx/conf/etc/nginx, or /usr/local/etc/nginx.

  

安装nginx 

 

apt udpate

apt install nginx -y

 

 

 

测试location

 

 

 

 

 

  

 

 

 

 

 

 

 

 

 

 

 

 

 

测试location方法2

 

 

 

 

 

 

 

标签:processes,process,worker,nginx,file,basic,configuration
来源: https://www.cnblogs.com/xman888/p/15440962.html