nginx echo模块的安装和使用

时间:2022-04-26 19:59:11

编译Nginx需要安装GCC编译器

Shell>sudo apt-get install autoconf automake build-essential

模块依赖性:nginx的一些模块需要第三方库支持,例如gzip模块需要zlib库,rewrite模块需要pcre库,ssl功能需要openssl库等。

Shell>sudo apt-get install zlib1g openssl libssl-dev libpcre3 libpcre3-dev 


这个模块不包含在 Nginx 源码中,安装方法:

1. 首先下载模块源码:https://github.com/agentzh/echo-nginx-module/tags
2. 解压到某个路径,假设为 /path/to/echo-nginx-module
3. 使用下面命令编译并安装 Nginx

$ tar -xzvf nginx-1.0.11.tar.gz
$ cd nginx-1.0.11/

$ ./configure --prefix=/usr/local/nginx --with-http_ssl_module --add-module=/path/to/echo-nginx-module

$ make -j2
$ make install

开始使用echo module.

location /hello {
default_type 'text/javascript'; //如果没有这个default_type,则会一直下载文件而不是输出在浏览器上
echo $echo_client_request_headers;
echo_read_request_body;
echo $request_body;
}

更多参数和echo 功能,可以查看详细文档。