欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

nginx 配置:access_log /home/serversoft/nginx/log/access.log main; main 指的是什么?有什么作用? 有大用

nginx 配置:access_log /home/serversoft/nginx/log/access.log main; main 指的是什么?有什么作用?

不加 ‘main’ 会有什么结果。



main 是日志定义格式。

access_log Log_path log_format;
这样的格式。
log_format 是在Nginx.conf或者Vhost中定义的Log格式。名字可以自定义。
Log_path是你的Log放的路径,可以相对路径或者绝对路径,主要是有权限写入。

在你的这个例子中Main是定义好的日志格式。
默认不写,继承Nginx中默认定义的格式,一般叫combined,


来自 https://zhidao.baidu.com/question/1754539152814481868.html


普通分类: