在Nginx中,可以使用lua腳本來查看請求的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())
}
}
}
}
以上配置會在訪問根路徑時,通過lua腳本輸出請求的Header信息。
$ sudo service nginx restart
$ curl http://localhost/
結果會輸出請求的Header信息。
注意:上述方法需要在Nginx中安裝ngx_lua模塊,并且配置文件中添加相關配置。如果不想使用lua模塊,也可以通過其他方式實現,如使用Nginx的變量和日志模塊等。