美文网首页
Nginx配置文件结构

Nginx配置文件结构

作者: Eiger | 来源:发表于2018-03-02 17:34 被阅读4次

nginx consists of modules which are controlled by directives specified in the configuration file. Directives are divided into simple directives and block directives. A simple directive consists of the name and parameters separated by spaces and ends with a semicolon (;). A block directive has the same structure as a simple directive, but instead of the semicolon it ends with a set of additional instructions surrounded by braces ({ and }). If a block directive can have other directives inside braces, it is called a context (examples: eventshttpserver, and location).


Directives placed in the configuration file outside of any contexts are considered to be in themain context. The events and http directives reside in the main context, server in http, and locationin server.

The rest of a line after the # sign is considered a comment.

相关文章

  • 第二讲 Nginx模块详解

    本章要点 Nginx 配置文件结构 各个模块的详解 2.1 Nginx配置文件结构 Nginx的配置文件nginx...

  • Nginx 之基础配置解释

    作者:Gakki 配置文件结构 nginx 的配置文件在 /nginx/conf/nginx.conf 下,打开...

  • NGINX配置文件

    1. 配置文件结构 我们从nginx安装后默认的配置文件,去了解nginx配置文件的结构 我们剔除文件里面的基础指...

  • Nginx配置文件说明和优化

    1) nginx文件结构和配置文件说明 2) Nginx优化

  • Nginx配置文件详解

    一、Nginx的配置文件的整体结构 Nginx是通过配置文件来做到各个功能的实现的。Nginx的配置文件的格式非常...

  • Nginx软件应用

    一、目录结构 配置文件目录、 站点目录、 日志目录 1、配置文件目录 nginx/nginx.conf ...

  • 002.nginx.conf配置以及虚拟站点配置

    1.Nginx目录结构 2.Nginx全局配置 conf/nginx.conf 3.站点配置文件,通过全局配置文件...

  • nginx基础知识

    nginx主配置文件 nginx.conf 配置文件结构如下: location匹配规则 语法规则location...

  • Nginx配置文件简介

    一、从一个简单的Nginx配置文件入手 如何使用自定义的配置文件 Nginx配置文件的结构 二、Nginx服务的基...

  • Nginx(二)

    一、nginx目录结构和命令 二、配置文件的组成部分 三、主配置文件结构: 四部 四、nginx配置 五、http...

网友评论

      本文标题:Nginx配置文件结构

      本文链接:https://www.haomeiwen.com/subject/tpaaxftx.html