在CentOS 6.9 x86_64的nginx 1.12.2上开启echo-nginx-module模块实录

前端之家收集整理的这篇文章主要介绍了在CentOS 6.9 x86_64的nginx 1.12.2上开启echo-nginx-module模块实录前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
echo-Nginx-module是一个第三方模块,在Nginx源码中没有,但是OpenResty中有,它为Nginx.conf带来了echo,sleep,time等多个类似bash的强大命令。
目前最新版本是v0.61

安装指南参见
https://github.com/openresty/echo-nginx-module#installation

配置

    server {
        listen 8081;
        server_name localhost;

        location /test {
            set $foo hello;
            echo "foo: $foo";
        }

        location /test1 {
            set $first "hello ";
            echo "${first}world";
        }

        location /foo {
            echo "foo = [$foo]";
        }

        location /bar {
            set $foo 32; 
            echo "bar = [$foo]";
        }
    }   
完整的Nginx.conf如下:
https://github.com/taoyunxing/github_test/blob/master/nginx.conf

下载源码
cd /usr/local/src
git clone https://github.com/openresty/echo-Nginx-module.git

cd Nginx-1.12.2
./configure --with-http_ssl_module \
--with-pcre=/usr/local/src/pcre-8.41 \
--with-zlib=/usr/local/src/zlib-1.2.11 \
--with-openssl=/usr/local/src/openssl-1.1.0g \
--with-http_stub_status_module \
--add-module=/usr/local/src/ngx_cache_purge \
--add-module=/usr/local/src/ngx_req_status \
--add-module=/usr/local/src/echo-Nginx-module
make
make install

这个例子也给出了OpenResty中的模块如何编译进社区最新版Nginx中去的方法。我起初看到OpenResty中的模块目录比较怪异,以为还需要自己调整目录结构再整合到Nginx中,其实是没有必要的。

安装完成之后,检查Nginx.conf的完整性并重启Nginx
/usr/local/Nginx/sbin/Nginx -t
/usr/local/Nginx/sbin/Nginx -s stop
/usr/local/Nginx/sbin/Nginx

测试请求
curl -v 'http://localhost:8081/test'


curl -v 'http://localhost:8081/test1'


curl -v 'http://localhost:8081/foo'


curl -v 'http://localhost:8081/bar'

特殊说明

上面仅是最基本的用法,还有很多高级的用法有待后续深入探索时再补充上来。

参考文献 [1].https://github.com/openresty/echo-Nginx-module [2].http://blog.sina.com.cn/s/blog_6d579ff40100wi7p.html

原文链接:https://www.f2er.com/centos/374916.html

猜你在找的CentOS相关文章