nginx - basic

2021/10/23 7:09:30

本文主要是介绍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

 

 

 

 

 

 

 



这篇关于nginx - basic的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程