nginx在 server段自定义access.log格式 不要和http段的全局配置冲突
时间: 2024-03-05 11:52:46 浏览: 114
nginx配置教程.rar
如果你想在 server 段中自定义 access.log 格式,同时避免和 http 段的全局配置冲突,可以在 server 段中添加以下语句:
```
server {
...
access_log /path/to/access.log custom_format;
...
}
```
这样,就会覆盖 http 段中的全局配置,在 server 段中使用自定义的 `custom_format` 格式记录访问日志。需要注意的是,如果在 server 段中没有定义自定义格式,将会使用 http 段中的全局配置。
阅读全文