31_access 日志

文章目录

  • 过滤模块的位置
  • 返回响应-加工响应内容


过滤模块的位置

  • 接收 http 头部 ->
  • pre_access 阶段: -> limit_req 模块 -> limit_conn 模块 ->
  • access 阶段: -> access 模块 auth_basic 模块
  • content 阶段: -> concat 模块 -> static 模块 ->
  • header 过滤模块: -> image_filter -> gzip ->
  • -> 发送 http 头部->
  • body 过滤模块: image_filter -> gzip ->
  • -> 发送http 包体

返回响应-加工响应内容

  • http 过滤模块:
    • copy_filter: 复制包体内容
    • postpont_filter: 处理子请求
    • header_filter: 构造响应头部
    • write_filter: 发送响应

你可能感兴趣的:(Nginx,服务器,nginx)