在Nginx中,可以使用lua腳本來(lái)查看請(qǐng)求的Header信息。
$ wget https://github.com/openresty/lua-nginx-module/archive/v0.10.15.tar.gz
$ tar -xzvf v0.10.15.tar.gz
$ cd lua-nginx-module-0.10.15/
$ cp -r * /path/to/nginx/modules/
http {
lua_package_path "/path/to/lua-nginx-module/?.lua;;";
lua_package_cpath "/path/to/lua-nginx-module/?.so;;";
server {
location / {
access_by_lua_block {
ngx.header.content_type = "text/plain"
ngx.say(ngx.req.get_headers())
}
}
}
}
以上配置會(huì)在訪問(wèn)根路徑時(shí),通過(guò)lua腳本輸出請(qǐng)求的Header信息。
$ sudo service nginx restart
$ curl http://localhost/
結(jié)果會(huì)輸出請(qǐng)求的Header信息。
注意:上述方法需要在Nginx中安裝ngx_lua模塊,并且配置文件中添加相關(guān)配置。如果不想使用lua模塊,也可以通過(guò)其他方式實(shí)現(xiàn),如使用Nginx的變量和日志模塊等。