Nginx升级到1.1.1*版本后
会出现如下警告
nginx: [warn] the "log_format" directive may be used only on "http" level in /etc/nginx/nginx.conf:84
主要是Nginx新版本的日志声明代码位置发生了变化,原来旧版本中,需要在每一段虚拟主机server
里写如下日志格式声明
log_format access '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" $http_x_forwarded_for';
新版本只需要将以上代码移动到http
层级里,将nginx.conf
里如下代码代移到http
花括号内即可。
http {
log_format access '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" $http_x_forwarded_for';
}
再测试一下,没问题了
[root@test01 ~]# nginx -t
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful