1.nginx.conf的主要部分
events { } http { server { location path { ... } location path { ... } } server { ... } }
2.配置文件的结构解释 events:配置影响nginx服务器或与用户的网络连接。 http:可以嵌套多个server,配置代理,缓存,日志定义等绝大多数功能和第三方模块的配置。 server:配置虚拟主机的相关参数,一个http中可以有多个server。 location:配置请求的路由,以及各种页面的处理情况。
原文地址:https://www.cnblogs.com/hixiaowei/p/10744597.html
时间: 2024-11-13 09:18:58