AWS S3 : Prevent Hotlinking policy
Problem :
Hosting a lot of photos or video files on AWS S3? Don't want other websites to link to your content or use your S3 as a free loader?
Solution :
Add new bucket policy to prevent hot linking. Go to the properties of the S3 bucket you want to prevent hot linking policy and click on the Add Bucket Policy button.
A modal box will appear and enter this policy :
{
"Version": "2008-10-17",
"Id": "preventHotLinking",
"Statement": [
{
"Sid": "1",
"Effect": "Allow",
"Principal": {
"AWS": "*"
},
"Action": "s3:GetObject",
"Resource": "arn:aws:s3:::your-s3-bucket/*",
"Condition": {
"StringLike": {
"aws:Referer": [
"http://yourwebsitename.com/*",
"http://www.yourwebsitename.com/*"
]
}
}
}
]
}
NOTE : Change your-s3-bucket and yourwebsitename.com to yours.
Reference :
https://docs.aws.amazon.com/AmazonS3/latest/dev/example-bucket-policies.html
See also : WARNING: UNPROTECTED PRIVATE KEY FILE! error message
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+17.9k Golang : Generate MD5 checksum of a file
+41.5k Golang : Encode image to base64 example
+8.3k Golang : How to use if, eq and print properly in html template
+11.2k Golang : How to determine if a year is leap year?
+14.9k Golang : Login and logout a user after password verification and redirect example
+6.2k Golang : How to capture return values from goroutines?
+6.4k Golang : Routes multiplexer routing example with regular expression control
+3.6k Responsive Google Adsense
+6.6k Golang : Find the length of big.Int variable example
+6.1k Golang : How to check if input string is a word?
+19.2k Golang : How to read JPG(JPEG), GIF and PNG files ?
+11.3k Golang : Convert(cast) int to int64