Set far future Expires only for fingerprinted files

This commit is contained in:
Piotr Sarnacki 2015-02-19 11:41:38 +01:00
parent 1a9f984b58
commit 1774e6d571

View File

@ -138,9 +138,10 @@ class Travis::Web::App
end
def expires(file)
case path_for(file)
when '/' then '0'
else (server_start + age).httpdate
if fingerprinted?(file)
(server_start + age).httpdate
else
'0'
end
end