nginx向响应内容中追加内容(ngx_http_addition_module模块)

凉白开 Linux Nginx ttlsa教程系列1 28,7744字数 1655阅读5分31秒阅读模式

ngx_http_addition_module在响应之前或者之后追加文本内容,比如想在站点底部追加一个js或者css,可以使用这个模块来实现,这个模块和淘宝开发的nginx footer模块有点类似,但是还是有不同. 这个模块需要依赖子请求,nginx footer依赖nginx写死的配置.

1. 安装nginx

# wget http://nginx.org/download/nginx-1.4.2.tar.gz
# tar -xzvf nginx-1.4.2.tar.gz
# cd nginx-1.4.2
#  --prefix=/usr/local/nginx-1.4.2 --with-http_stub_status_module --with-http_addition_module
# make
# make install

如果你已经安装了nginx,只想增加模块,请参考ttlsa以前的文章如何安装nginx第三方模块文章源自运维生存时间-https://www.ttlsa.com/linux/nginx-modules-ngx_http_addition_module/

2. 指令(Directives)

语法:     add_before_body uri;
默认值:     —
配置段:     http, server, location
发起一个子请求,请求给定的uri,并且将内容追加到主题响应的内容之前。文章源自运维生存时间-https://www.ttlsa.com/linux/nginx-modules-ngx_http_addition_module/

语法:     add_after_body uri;
默认值:     —
配置段:     http, server, location
发起一个子请求,请求给定的uri,并且将内容追加到主题响应的内容之后。文章源自运维生存时间-https://www.ttlsa.com/linux/nginx-modules-ngx_http_addition_module/

syntax: addition_types mime-type ...;
default: addition_types text/html;
context: http, server, location
这个指令在0.7.9开始支持,指定需要被追加内容的MIME类型,默认为“text/html”,如果制定为*,那么所有的文章源自运维生存时间-https://www.ttlsa.com/linux/nginx-modules-ngx_http_addition_module/

3. nginx配置addition

3.1 配置nginx.conf文章源自运维生存时间-https://www.ttlsa.com/linux/nginx-modules-ngx_http_addition_module/

server {
    listen       80;
    server_name  www.ttlsa.com;

    root /data/site/www.ttlsa.com;    

    location / {
        add_before_body /2013/10/header.html;
        add_after_body  /2013/10/footer.html;
    }
}

3.2 测试
以下三个文件,对应请求的主体文件和add_before_body、add_after_body对应的内容文章源自运维生存时间-https://www.ttlsa.com/linux/nginx-modules-ngx_http_addition_module/

# cat /data/site/test.ttlsa.com/2013/10/20131001_add.html 
<html>
<head>
<title>I am title</title>
</head>
<body>
ngx_http_addition_module
</body>
</html>

# cat /data/site/test.ttlsa.com/2013/10/header.html 
I am header!

# cat /data/site/test.ttlsa.com/2013/10/footer.html 
footer - ttlsa

访问结果如下,可以看到20131001_add.html的顶部和底部分别嵌入了子请求header.html和footer的内容。文章源自运维生存时间-https://www.ttlsa.com/linux/nginx-modules-ngx_http_addition_module/

# curl test.ttlsa.com/2013/10/20131001_add.html           
I am header!
<html>
<head>
<title>I am title</title>
</head>
<body>
ngx_http_addition_module
</body>
</html>
footer - ttlsa

4. 结束语

addition模块与上节上节nginx sub替换响应内容模块应用场景有点相同,具体怎么使用,大家结合实际情况来使用.欢迎大家继续访问运维生存时间.文章源自运维生存时间-https://www.ttlsa.com/linux/nginx-modules-ngx_http_addition_module/

转载请注明来自运维生存时间:https://www.ttlsa.com/html/3294.html文章源自运维生存时间-https://www.ttlsa.com/linux/nginx-modules-ngx_http_addition_module/ 文章源自运维生存时间-https://www.ttlsa.com/linux/nginx-modules-ngx_http_addition_module/

weinxin
我的微信
微信公众号
扫一扫关注运维生存时间公众号,获取最新技术文章~
凉白开
  • 本文由 发表于 05/10/2013 01:01:32
  • 转载请务必保留本文链接:https://www.ttlsa.com/linux/nginx-modules-ngx_http_addition_module/
评论  1  访客  0

评论已关闭!