各位老师,今日准备入门nginx,结果还没入门就栽了一个大跟头T_T在nginx.conf中有这样一段#log_formatmain'$remote_addr-$remote_user[$time_local]"$request"'#'$status$body_bytes_sent"$http_referer"'#'"$http_user_agent""$http_x_forwarded_for"';这里定义了日志的格式,其中$status变量引起了我的注意。查看access.log日志,我的确也看到了200404一类的状态码。我觉得这个变量就很有用了,比如说我代理了一个地址location/{proxy_passhttp://127.0.0.1:8000/;}我想获得代理的这个地址返回的各种http状态,我就可以通过$status来判断。但是我尝试返回这个变量时location/{if($status){return$status;}proxy_passhttp://127.0.0.1:8000/;}却打印出来了:invalidreturncode"$status"inE:nginx/conf/nginx.conf:52如果我写成:location/{if($status){return404;}proxy_passhttp://127.0.0.1:8000/;}则所有的请求都可以正常返回404,翻了一下nginix文档,在HTTPCore模块中没有发现$status这个变量,那么我想请问下,这个变量是干什么用的?我怎样才可以获取到代理地址返回的状态码?谢谢~
添加回答
举报
0/150
提交
取消