2013-02-28 51 views
1

我在Google雲端存儲上託管FireFox插件。爲了火狐妥善處理,需要的內容類型設置爲應用程序/ x-xpinstall使用自定義URL時丟失了內容類型標頭

我已經上傳如下:

gsutil -h "Content-Type: application/x-xpinstall" cp -a public-read \ 
    ActivityInfo.xpi gs://download.activityinfo.org 

當從標準端點訪問,一切是正確的:

$ curl -s -D - http://commondatastorage.googleapis.com/download.activityinfo.org/ActivityInfo.xpi \ 
    -o /dev/null 

HTTP/1.1 200 OK 
Server: HTTP Upload Server Built on Feb 13 2013 15:53:33 (1360799613) 
Expires: Thu, 28 Feb 2013 12:38:30 GMT 
Date: Thu, 28 Feb 2013 11:38:30 GMT 
Last-Modified: Thu, 28 Feb 2013 11:38:01 GMT 
ETag: "1ee983889c947a204eab4db6902c9a67" 
x-goog-generation: 1362051481261000 
x-goog-metageneration: 1 
Content-Type: application/x-xpinstall 
Content-Language: en 
x-goog-crc32c: a11b93ab 
Accept-Ranges: bytes 
Content-Length: 5562 
Cache-Control: public, max-age=3600, no-transform 
Age: 491 

但是當我嘗試從自定義域download.activityinfo.org訪問,頭部返回到應用程序/八位字節流

$ curl -s -D - http://download.activityinfo.org/ActivityInfo.xpi -o /dev/null  
HTTP/1.1 200 OK 
Server: HTTP Upload Server Built on Feb 13 2013 15:53:33 (1360799613) 
Expires: Thu, 28 Feb 2013 12:10:24 GMT 
Date: Thu, 28 Feb 2013 11:10:24 GMT 
Last-Modified: Wed, 27 Feb 2013 20:36:24 GMT 
ETag: "1ee983889c947a204eab4db6902c9a67" 
x-goog-generation: 1361997384772000 
x-goog-metageneration: 2 
Content-Type: application/octet-stream 
x-goog-crc32c: a11b93ab 
Accept-Ranges: bytes 
Content-Length: 5562 
Cache-Control: public, max-age=3600, no-transform 
Age: 2298 

我已經設置了CNAME到c.storage.googleapis.com%的文檔

$ nslookup download.activityinfo.org 
Non-authoritative answer: 
Server: Comtrend.Home 
Address: 192.168.1.1 

Name: storage.l.googleusercontent.com 
Addresses: 2a00:1450:400c:c00::80 
      173.194.78.128 
Aliases: download.activityinfo.org 
     c.storage.googleapis.com 

這是bug還是我需要改變我的配置?

回答

1

上面的兩個結果在x-goog-generation和x-goog-metageneration中有不同的值,這讓我懷疑你不止一次上傳了這個對象,並且你看到了不同版本的結果(它們有不同的結果Content-Type的值)。您是否爲桶啓用了版本控制?如果沒有,那麼在其中一條路徑上可能會發生一些緩存。你仍然看到這種行爲?

+0

就是這樣!此域名已啓用Cloudflare。感謝銳利的眼睛! – akbertram 2013-03-06 08:05:30