Nginx 的第三方 Echo 模块 — echo-nginx-module(一)

姬实
2023-12-01


Nginx 有个 echo 模块可以用来输出一些简单的信息,例如:

location / {
            root   html;
            index  index.html index.htm;
            set $foo hello ;
             echo "$foo";
             echo $args;
             echo $arg_name;
        }

要想用这个模块,得在编译时添加 它

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

 ./configure --add-module=/usr/src/echo-nginx-module-0.51/ && make && make install

 类似资料: