在七牛云CDN新建域名的时候,七牛云要求做源站测试,该表单如下图所示:
这个图片路径我确定是OK的,因为后面在跟七牛云客服沟通的过程中,他告诉我“您的服务器不让host是加速域名的请求访问,返回404”,如下所示:
$ curl -I "http://www.dgcomet-cms.dgcomet.com/static/img/6bb80da2c2d4045f7173d41 305709832.jpg" -H "Host:cn.dgcomet-cms.dgcomet.com" % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0HT TP/1.1 404 Not Found Date: Wed, 24 May 2017 10:28:05 GMT Server: Apache/2.4.23 (Unix) PHP/5.6.8 Content-Type: text/html; charset=iso-8859-1
而如果不带这个Host,则是正常的:
$ curl -I "http://www.dgcomet-cms.dgcomet.com/static/img/6bb80da2c2d4045f7173d41 305709832.jpg" % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 82935 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0HT TP/1.1 200 OK Date: Wed, 24 May 2017 10:27:42 GMT Server: Apache/2.4.23 (Unix) PHP/5.6.8 Last-Modified: Wed, 24 May 2017 07:51:25 GMT ETag: "143f7-550405ef9e6a0" Accept-Ranges: bytes Content-Length: 82935 Content-Type: image/jpeg
我的服务器是阿里云ECS,用的apache,请问要怎么配置才能让这加了Host:cn.dgcomet-cms.dgcomet.com
的请求能够通过呢?
嗯,找到方法了,原来也很简单。
我本来就在用apache的vhost的,把加速域名添到源站域名对应的vhost项下的ServerAlias就OK了