Cache assets longer
This commit is contained in:
parent
aa8616f979
commit
41ca1ccebc
|
@ -64,6 +64,7 @@ if [ -z "$NO_UPLOAD" ]; then
|
||||||
echo "Overriding javascript mime-types..."
|
echo "Overriding javascript mime-types..."
|
||||||
s3cmd \
|
s3cmd \
|
||||||
--mime-type="application/javascript" \
|
--mime-type="application/javascript" \
|
||||||
|
--add-header="Cache-Control: max-age=31536000" \
|
||||||
--exclude "*" \
|
--exclude "*" \
|
||||||
--include "*.js" \
|
--include "*.js" \
|
||||||
--recursive \
|
--recursive \
|
||||||
|
@ -72,6 +73,7 @@ if [ -z "$NO_UPLOAD" ]; then
|
||||||
echo "Overriding css mime-types..."
|
echo "Overriding css mime-types..."
|
||||||
s3cmd \
|
s3cmd \
|
||||||
--mime-type="text/css" \
|
--mime-type="text/css" \
|
||||||
|
--add-header="Cache-Control: max-age=31536000" \
|
||||||
--exclude "*" \
|
--exclude "*" \
|
||||||
--include "*.css" \
|
--include "*.css" \
|
||||||
--recursive \
|
--recursive \
|
||||||
|
@ -80,6 +82,7 @@ if [ -z "$NO_UPLOAD" ]; then
|
||||||
echo "Overriding svg mime-types..."
|
echo "Overriding svg mime-types..."
|
||||||
s3cmd \
|
s3cmd \
|
||||||
--mime-type="image/svg+xml" \
|
--mime-type="image/svg+xml" \
|
||||||
|
--add-header="Cache-Control: max-age=31536000" \
|
||||||
--exclude "*" \
|
--exclude "*" \
|
||||||
--include "*.svg" \
|
--include "*.svg" \
|
||||||
--recursive \
|
--recursive \
|
||||||
|
|
Loading…
Reference in New Issue