aliyun log server custom domain does not work

1. problem

The code does not work when you want to use aliyun sdk to send log to aliyun log server with your custom domain. After review the nodejs sdk source code, I find that the api domain is built:

var hostname = req.httpRequest.endpoint.hostname;

var projectName = req.params['projectName'];
var host = projectName+'.'+ hostname;


if(!/^[0-9.]+$/.test(hostname)){
  //不是ip,  是域名, 則需要拼接project名
  var protocol = req.httpRequest.endpoint.protocol;
  var port = req.httpRequest.endpoint.port;

  //real endpoint
  var endpointObj = parseURL(protocol+'//'+host+':'+port);

  ALY.util.update(req.httpRequest, {endpoint: endpointObj });
  // ALY.util.update(req.service, {endpoint: endpointObj });
}

The endpoint also has the project name prefix. This will result a error address resolution.

2. solution

add two address resolution rule:

machine record record type record value
@ CNAME cn-beijing.log.aliyuncs.com
projectName CNAME projectName.cn-beijing.log.aliyuncs.com

NOTE: cn-beijing.log.aliyuncs.com: the domain we need to replace with custom domain. In the second rule, the project name acts the subdomain, the resolved address is the aliyun origiinal log sevice domain. If you use the nslookup to test the: projectName.custom.com, we can find that it is ok to resolve to right address.

3. test and verify

Before testing, you sould change the endpoint from cn-beijing.log.aliyuncs.com to your custom domain for example: jimmy.cn in your code. I have tested below three sdk:

After change the endpoint from aliyun domain to custom domain, all my code works to send log to aliyun log service, so the above solution is ok.

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章