gpt4 book ai didi

nginx - 我可以使用 vanilla Nginx 将请求 header 值作为响应正文回显吗?

转载 作者:行者123 更新时间:2023-12-04 13:34:11 24 4
gpt4 key购买 nike

是否可以将 Nginx 配置为返回从请求 header 或请求参数创建的响应正文?看起来这可以通过 echo 来完成模块,但如果可能的话,我想用 Nginx 的 Vanilla 安装来做。

基本上我想做以下,但显然 return_body不存在,那我可以用什么代替?

location ~* ^/echo/(.+) {
return_body $1;
}

或者
location /echo_user_agent {
return_body $http_user_agent;
}

如果我安装 echo我可以替换的模块 return_bodyecho ,但如果可能的话,能够做到这一点而不必安装任何额外的东西会很好,在我看来,像这样简单的事情应该可以不用。

最佳答案

您可以使用 return 200:

location = /echo_user_agent {
return 200 $http_user_agent;
}

关于nginx - 我可以使用 vanilla Nginx 将请求 header 值作为响应正文回显吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8501814/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com