Tengine-CDN的默认配置
Posted liandeng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Tengine-CDN的默认配置相关的知识,希望对你有一定的参考价值。
Tengine-CDN的默认配置
为了解决配置没有获取到的异常情况,我们在tengine端增加了默认的配置,能够让tengine-cdn按照既定的默认规则来处理请求。">
默认配置暂定如下:
server {
listen 115.238.23.25:443;
server_name promotion.alipay.com;
set $alipayConfig
‘{"Default_Ip":"mobilegw.alipay.com","G_Result_Status":"1002","G_Memo":"调用次数超过限制","G_Tips":"排队人太多了,请稍后再试。","G_Molecule":"100","G_Denominator":"100"}‘;
set $back_ip mobilegw.alipay.com;
location / {
rewrite_by_lua_file /home/admin/tengine/conf/dyconf/dyconf.lua;
proxy_pass http://$back_ip;
}
}
以上是关于Tengine-CDN的默认配置的主要内容,如果未能解决你的问题,请参考以下文章
tengine-2.3.1 增加ngx_http_upstream_check_module 模块