猿问

请问nginx中$status变量的问题怎么回事哈啊?

各位老师,今日准备入门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这个变量,那么我想请问下,这个变量是干什么用的?我怎样才可以获取到代理地址返回的状态码?谢谢~
拉丁的传说
浏览 367回答 2
2回答

炎炎设计

httpcore里有$status。不过看nginx文档,关于return的部分,code的部分应该是不支持变量的。另外,nginx是分不同phase依次执行的,if在rewritephase,proxy_pass在contentphase,所以if总是先于proxy_pass执行的,也就不可能拿到proxy_pass的statuscode。

呼啦一阵风

这个location里面是配置路由的啊,location是根据url来进行不同的定位,定位到不同的处理方式上,您这个$status不能当做他匹配的规则吧
随时随地看视频慕课网APP

相关分类

JavaScript
我要回答