mirror of
https://github.com/jbowdre/runtimeterror.git
synced 2024-11-12 19:12:18 +00:00
update post
This commit is contained in:
parent
3b98e559bd
commit
6e42c1e4b2
1 changed files with 10 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
|||
---
|
||||
title: "Further Down the Bunny Hole"
|
||||
date: 2024-06-06
|
||||
lastmod: "2024-06-07"
|
||||
lastmod: "2024-06-08T02:57:35Z"
|
||||
description: "After a few weeks of weird configuration glitches, I decided to migrate my static site from Neocities to Bunny CDN. Here's how I did it."
|
||||
featured: false
|
||||
toc: true
|
||||
|
@ -45,7 +45,7 @@ I found the [bunnycdn-storage-deploy](https://github.com/ayeressian/bunnycdn-sto
|
|||
| `BUNNY_STORAGE_PASSWORD` | `7cb197e5-[...]-ad35820c0de8` | Get it from the storage zone's FTP & API Access page |
|
||||
| `BUNNY_ZONE_ID` | `12345` | The pull zone ID you copied earlier |
|
||||
|
||||
Then I just updated [my deployment workflow](https://github.com/jbowdre/runtimeterror/blob/main/.github/workflows/deploy-prod.yml) to swap the Bunny action in place of the Neocities one:
|
||||
Then I just updated [my deployment workflow](https://github.com/jbowdre/runtimeterror/blob/main/.github/workflows/deploy-prod.yml) to swap the Bunny action in place of the Neocities one (and [adjust the 404 page for bunny](https://support.bunny.net/hc/en-us/articles/360000332631-How-do-I-configure-a-custom-404-page-for-my-storage-zone)):
|
||||
|
||||
```yaml
|
||||
# torchlight! {"lineNumbers":true}
|
||||
|
@ -96,6 +96,14 @@ jobs:
|
|||
chmod 644 ~/.ssh/known_hosts #
|
||||
- name: Build with Hugo
|
||||
run: HUGO_REMOTE_FONT_PATH=${{ secrets.REMOTE_FONT_PATH }} hugo --minify
|
||||
- name: Insert 404 page # [tl! **:4]
|
||||
run: | # [tl! ++:1,1 --:2,1]
|
||||
mkdir -p public/bunnycdn_errors
|
||||
cp public/404/index.html public/not_found.html
|
||||
cp public/404/index.html public/bunnycdn_errors/404.html
|
||||
- name: Insert 404 page # [tl! ++:-1,1 reindex(-1)]
|
||||
run: |
|
||||
cp public/404/index.html public/not_found.html
|
||||
- name: Highlight with Torchlight
|
||||
run: |
|
||||
npm i @torchlight-api/torchlight-cli
|
||||
|
|
Loading…
Reference in a new issue