方法一是:
从下面连接下载echo-nginx-module模块并安装:
https://github.com/agentzh/echo-nginx-module
下载之后安装按照普通模块安装即可:
./configure --prefix=/usr/local/nginx --add-module=/dir-to-echo-nginx-module
安装之后,root权限执行:
make -j2 && make install
然后就可以在自定义模块中使用echo指令。
比如在配置文件nginx.conf中添加:
location /hello {
echo "hello, use echo!";
}
方法2是:
不用使用echo指令,直接使用html之类的文件代替,但是url需要添加(.html)后缀名,例如:
location /hello.html {
root html;
index htllo.html;
}
但是在请求时可以不用加后缀名,如:
http://localhost/hello
声明: 此文观点不代表本站立场;转载须要保留原文链接;版权疑问请联系我们。