调试location指令时,直接让location输出文本

只谈情不闲聊 提交于 2020-03-25 21:44:55

有时候我们调试location指令时希望location指令能够直接输出文本,这样能够方便我们进行调试。这时我们可以使用echo模块实现,但是大多数情况我们没有安装这个模块,那么我们还可以使用另一个方法来实现这个想法

  直接返回文本

location / {
  default-type text/plain;
  return 502 "this is a test message";        
}

  html标签格式

location / {
  default-type text/html;
  return 502 "this is a test message";        
}

  返回json文本

location / {
            default_type application/json;
            return 502 '{"name":"mayuan","age":18}';
        }

 

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!