How do you tell the browser to clear its cache while updating files ?
You can add the following header to solve this problem.
Add Cache Clear header manually with S3 UI
1. Upload files to S32. Select your uploaded files and Add "Cache-Control" header to enforce the browser not to cache any files and to read the latest ones.
header : Cache-Control
value: max-age=0, no-cache, no-store, must-revalidate
3. Push a button to make your uploaded files public
Upload files to S3 and add Cache Clear header automatically
1. Install aws and s3cmd
// Install aws
apt-get install aws
// Download and install s3cmd
http://s3tools.org/repositories
// Install
tar xvfz s3cmd-1.0.0-rc1.tar.gz
cd s3cmd-1.0.0-rc1/
python setup.py install
// Set up s3cmd
./s3cmd --configure
2.Deployment
Copy the following commands in your script file. Then you can execute this task automatically while updating files. // Upload Files to s3
aws s3 sync /var/www/html/yourproject/client s3://yourbucket/client --cache-control max-age=0 --acl public-read
// Add Cache Clear header
s3cmd --recursive modify --add-header="Cache-Control:max-age=0, no-cache, no-store, must-revalidate" s3://yourbucket/client
// Make files Public
s3cmd setacl s3://yourbucket/client --acl-public --recursive
No comments:
Post a Comment