是否可以配置Nginx以返回从请求标头或请求参数创建的响应主体?看起来这可以用echo模块完成,但是如果可能的话我想用一个Nginx的vanilla安装来做.
基本上我想做以下,但显然return_body不存在,那么我可以使用什么呢?
location ~* ^/echo/(.+) {
return_body $1;
}
要么
location /echo_user_agent {
return_body $http_user_agent;
}
如果我安装echo模块,我可以用echo替换return_body,但是如果可能的话,能够做到这一点而不必安装任何额外的东西会很好,在我看来像这样简单的事情应该可以做到没有.
最佳答案
您可以使用return 200执行此操作:
原文链接:https://www.f2er.com/nginx/434544.htmllocation = /echo_user_agent {
return 200 $http_user_agent;
}