淘宝的Tengine 下载
Posted 锦衣admin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了淘宝的Tengine 下载相关的知识,希望对你有一定的参考价值。
淘宝的Tengine 下载
Tengine 的安装
tengine是alibaba公司,在nginx的基础上,开发定制,更加服务自己业务的服务器软件。后来进行了开源。
tengine从2.3.0版本之后,tengine的模块被分离到modules,需要自己手动编译安装
Tengine 默认提供-m参数 查看已经编译加载的模块:./nginx -m
因为是在Nginx的基础上开发的,基本上的配置和命令与Nginx一致
编译安装:
解压:
# cd /root/soft
# tar xvf tengine-2.3.0.tar.gz
# cd tengine-2.3.0
编译安装:
#l ./configure --prefix=/usr/local/tengine
# make && make install
# /usr/local/tengine/sbin/nginx => 启动tengine
查看启动情况:
[root@sever_01 sbin]# ps -ef|grep nginx
root 24068 1 0 04:25 ? 00:00:00 nginx: master process ./nginx
nobody 24069 24068 0 04:25 ? 00:00:00 nginx: worker process
到此安装完成
Tengine 安装内置模块 footer_filter_modulem
该模块官方文档:http://tengine.taobao.org/document/http_footer_filter.html
footer_filter_modulem模块的作用: 自动添加页脚信息 标识服务器信息,一般用户程序员的调试。可以在源代码中查看,因为是被注释掉的
-
tengine 2.3.0 后将自身实现的模块全部剥离到modules目录下了,需要使用
--add-module=/modules/<module_name>
的方式进行编译 -
make upgrade
该参数在配置内置模块和平滑升级的时候使用,目的是不停止服务进行配置模块 -
注意:如果是第三方的模块需要停止服务,然后编译安装,不能使用make upgrade
第一步:编译配置footer_filter_modulem 模块
进入解压目录重新编译:增加footer_filter_modulem
# cd tengine-2.3.0
#l ./configure --prefix=/usr/local/tengine --add-module=/root/soft/tengine-2.3.0/modules/ngx_http_footer_filter_module
说明:再配置时候直接跟上次编译配置参数即可,虽然-V 显示了很多参数。然后通过--add-module配置第三方模块的路径
# make && make install && make upgrade => 不停止服务配置内置模块
第二步:修改Tengine 配置文件并重载服务
修改配置文件并重载服务:
#l /usr/local/tengine/sbin/nginx -m => 查看有没有加载到footer_filter_modulem
# vim /usr/local/tengine/conf/nginx.conf => 修改配置文件
server {
listen 80;
server_name localhost;
root html;
footer_types "text/plain" "text/css" "application/x-javascript"; => 开启加载注释页脚信息
footer "$host_comment"; => 显示的变量信息
}
#l /usr/local/tengine/sbin/nginx -s reload => 重载Tngine 的配置文件
- 语法规则:
#可定义在http、server、location中,建议在server中
#定义需要插入footer的响应类型(Response Content-Type)。
footer_types "text/plain" "text/css" "application/x-javascript";
#在上面定义的HTTP响应的正文结尾插入指定的format内容。如果format中含有变量,会被替换为变量当前的值。
footer "$host_comment";
- 访问页面查看源代码
以上是关于淘宝的Tengine 下载的主要内容,如果未能解决你的问题,请参考以下文章