当前位置 主页 > 服务器问题 > win服务器问题汇总 >

    详解Nginx服务器的nginx-http-footer-filter模块配置

    栏目:win服务器问题汇总 时间:2019-12-05 21:39

    nginx-http-footer-filter想必大家都觉得很陌生,那我们就来认识一下它吧,这是淘宝开发的nginx模块. 它用于nginx在响应请求文件底部追加内容. 今天抽空研究下这个插件,希望对大家有所帮助。为什么发现了这个插件,因为这几天公司需要在所有shtml文件后面追加一个js代码用来做统计(之前统计代码没加齐全),在寻求解决方法的过程中找到了它认识了它最后喜欢上了它,你可能以为我用这个插件去实现了我要的功能,其实在认识他之前我用shell脚本替换齐全了. 不过我还是决定研究测试一下nginx-http-footer-filter,或许以后的需求上能有帮助,更或许能帮上其他需要帮助的人.进入正题吧.
    1. nginx-http-footer-filter到底是做什么的?
    说白了,就是在请求的页面底部插入你要插入的代码。
    2. 我们能用nginx-http-footer-filter来做什么?
    1、统一追加js代码用于统计(我是这么想的)
    2、底部追加响应这个请求的realsver(后端真实服务器)信息,便于系统管理员排查故障.
    3、你管理着数量庞大的虚拟主机,在所有web后面追加你的广告代码,黑链什么的(很无耻)
    4、举一反三吧,自己想想能用来做什么吧.
    淘宝用它来做什么?
    打开淘宝首页,查看他源代码,拖到最下面,内容如下:

    <!--city: fuzhou-->
    <!--province: unknown-->
    <!--hostname: -->
    <!--hostname: home1.cn199-->
    

    我们可以很清晰的看到,这边有省和地区还有主机名,也就是淘宝真实服务器的主机名,处理我这个请求的主机名为home1.cn199, city取到了fuzhou,provinece省份没取到,估计是它Geo的问题
    或者随便打开一个商品页面, 查看源代码,如下:

    </html>
    <script type="text/javascript">TShop.initFoot({});</script>
    

    可以看到他这边给这页面追加了一个js代码,淘宝开发这个模块的用意想必大家都明白了,集思广益,或许大家还有更好的用处.
    3. 怎么安装nginx-http-footer-filter
    3.1 下载地址:

    https://github.com/alibaba/nginx-http-footer-filter/tree/1.2.2
    3.2 安装nginx-footer模块
    之前已经安装过nginx,所以我选择覆盖nginx文件。

    # cd /usr/local/src/
    # wget https://codeload.github.com/alibaba/nginx-http-footer-filter/zip/1.2.2
    # unzip 1.2.2
     
    # http://nginx.org/download/nginx-1.4.1.tar.gz
    # tar -xzvf nginx-1.4.1.tar.gz
    # cd nginx-1.4.1
    # ./configure --prefix=/usr/local/nginx-1.4.1 \
    --with-http_stub_status_module --with-http_realip_module \
    --add-module=../nginx-http-footer-filter-1.2.2
    # make
    # mv /usr/local/nginx-1.4.1/sbin/nginx /usr/local/nginx-1.4.1/sbin/old_nginx
    # mv objs/nginx /usr/local/nginx-1.4.1/sbin/
    # /usr/local/nginx-1.4.1/sbin/nginx -s stop
    # /usr/local/nginx-1.4.1/sbin/nginx
    

    3.3 验证模块是否安装成功

    # /usr/local/nginx-1.4.1/sbin/nginx -V
    nginx version: nginx/1.4.1
    built by gcc 4.4.7 20120313 (Red Hat 4.4.7-3) (GCC)
    TLS SNI support enabled
    configure arguments: --prefix=/usr/local/nginx-1.4.1 
    --with-http_stub_status_module 
    --with-http_realip_module 
    --add-module=../nginx-http-footer-filter-1.2.2
    

    4. 怎么使用nginx-http-footer-filter模块
    4.1 配置location
    在location中使用footer "你的内容" 即可.看如下配置

    server {
        listen    173.255.219.122:80;
        server_name test.ttlsa.com;
        access_log /data/logs/nginx/test.ttlsa.com.access.log main;
     
        index index.html index.php index.html;
        root /data/site/test.ttlsa.com;
        location / {
          footer "<!-- $date_gmt -->";
          index index.html;
        }
     
        location =/html/2252.css {
          footer_types text/css;
          footer "/* host: $server_name - $date_local */";
    }