Update Bunny S3 hosting note

This commit is contained in:
Will Webberley 2023-04-23 15:33:59 +00:00
parent e208ff2326
commit ac5da699de
3 changed files with 9 additions and 3 deletions

BIN
.nova/Artwork Normal file

Binary file not shown.

After

(image error) Size: 6.6 KiB

4
.nova/Configuration.json Normal file
View File

@ -0,0 +1,4 @@
{
"workspace.art_style" : 1,
"workspace.color" : 5
}

View File

@ -1,5 +1,5 @@
---
date: "2023-03-24T19:48:00Z"
date: "2023-04-23T16:32:00Z"
title: "Hosting S3 content via Bunny CDN"
description: "Connecting a Bunny CDN pull zone to a web site hosted on S3-compatible storage"
tags: [technology]
@ -24,7 +24,7 @@ Upload your built web assets to the bucket. I recommend using `s3cmd` (which can
Now, to upload a directory to your bucket, you can run:
```shell
s3cmd sync path/to/content/* s3://BUCKET
s3cmd sync --no-mime-magic --guess-mime-type path/to/content/* s3://BUCKET
```
**Step 3**: Set a bucket policy for your bucket.
@ -68,6 +68,8 @@ For example, to setup a default index file (to `index.html`) use:
s3cmd ws-create --ws-index=index.html s3://BUCKET
```
**Note:** If deploying a single-page application (SPA), then you may wish to specify the error document too by passing in `--ws-error=index.html` to the above command.
And that's it for the bucket setup.
## Phase 2: Setup the Bunny pull zone
@ -90,7 +92,7 @@ rm -rf public 2>&1
echo "Building site..."
hugo -D
echo "Uploading site..."
s3cmd -c ~/.s3personal sync public/* s3://BUCKET
s3cmd -c ~/.s3personal sync --no-mime-magic --guess-mime-type public/* s3://BUCKET
echo "Clearing CDN cache..."
curl -X POST -H "AccessKey: $BUNNY_PERSONAL" https://api.bunny.net/pullzone/ID/purgeCache
echo "Done."