fix: update all gitea.giersig.eu refs to git.wildwuchs.work
Build & Deploy / build-and-deploy (push) Failing after 3m51s

This commit is contained in:
svemagie
2026-05-14 19:48:24 +02:00
parent 820ec4f3c7
commit c35c1055cc
5 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -190,7 +190,7 @@ The following are set directly in `.github/workflows/deploy.yml` (not secrets) b
```
INDIEKIT_URL http://10.100.0.20:3000 # node jail — IndieKit API, Funkwhale proxy, etc.
FUNKWHALE_INSTANCE http://10.100.0.40:5000 # Funkwhale jail
GITEA_URL https://gitea.giersig.eu # used by _data/githubActivity.js, githubRepos.js, widget JS
GITEA_URL https://git.wildwuchs.work # used by _data/githubActivity.js, githubRepos.js, widget JS
GITEA_ORG giersig.eu # Gitea org that owns the repos
```
@@ -212,6 +212,6 @@ GITEA_ORG giersig.eu # Gitea org that owns the repos
- **Content-warning support** — collapsible content on post pages, hidden content on listings
- **Upstream drift check script** — `scripts/check-upstream-widget-drift.mjs`
- **Self-hosted Gitea CI** — replaced GitHub Actions; `act_runner` on FreeBSD (custom `gitea_runner` rc service, `su - git` + `nohup`), sharp built from source with persistent binary cache (`src/build/Release/`), rsync via `deploy` user, syndication webhook via internal jail URL
- **Gitea sidebar widget** — `github-repos.njk` renamed to "Gitea"; runtime JS fetches commits/repos/PRs directly from `gitea.giersig.eu` API; build-time data via `_data/githubActivity.js` + `_data/githubRepos.js` (both use Gitea org API). Widget configured via `site.gitea.{url,org,repos}` in `_data/site.js`
- **Gitea sidebar widget** — `github-repos.njk` renamed to "Gitea"; runtime JS fetches commits/repos/PRs directly from `git.wildwuchs.work` API; build-time data via `_data/githubActivity.js` + `_data/githubRepos.js` (both use Gitea org API). Widget configured via `site.gitea.{url,org,repos}` in `_data/site.js`
- **Changelog → Gitea** — `/changelog` page fetches commits directly from Gitea API (both repos), with client-side commit categorisation (feat/fix/docs/chore/refactor); no longer depends on IndieKit's GitHub proxy endpoint
- **Post interlinking** — See Also (in-text links + `related:` frontmatter + same-target posts) and Linked From (backlinks); image links excluded from auto-extraction; untitled posts show path-only URL via `pathOnly` filter
+1 -1
View File
@@ -2,7 +2,7 @@
Personal IndieWeb blog for [blog.giersig.eu](https://blog.giersig.eu), built with [Eleventy](https://www.11ty.dev/) and [IndieKit](https://getindiekit.com/).
This is **svemagie's** instance of [`svemagie/blog-eleventy-indiekit`](https://gitea.giersig.eu/svemagie/blog-eleventy-indiekit) (the shared theme), adapted and extended beyond the upstream.
This is **svemagie's** instance of [`svemagie/blog-eleventy-indiekit`](https://git.wildwuchs.work/svemagie/blog-eleventy-indiekit) (the shared theme), adapted and extended beyond the upstream.
---
+1 -1
View File
@@ -5,7 +5,7 @@
import { cachedFetch } from "../lib/data-fetch.js";
const GITEA_URL = process.env.GITEA_INTERNAL_URL || process.env.GITEA_URL || "https://gitea.giersig.eu";
const GITEA_URL = process.env.GITEA_INTERNAL_URL || process.env.GITEA_URL || "https://git.wildwuchs.work";
const GITEA_ORG = process.env.GITEA_ORG || "giersig.eu";
const GITEA_REPOS = (process.env.GITEA_REPOS || "indiekit-blog,indiekit-server").split(",").filter(Boolean);
+1 -1
View File
@@ -5,7 +5,7 @@
import { cachedFetch } from "../lib/data-fetch.js";
const GITEA_URL = process.env.GITEA_INTERNAL_URL || process.env.GITEA_URL || "https://gitea.giersig.eu";
const GITEA_URL = process.env.GITEA_INTERNAL_URL || process.env.GITEA_URL || "https://git.wildwuchs.work";
const GITEA_ORG = process.env.GITEA_ORG || "giersig.eu";
export default async function () {
+1 -1
View File
@@ -117,7 +117,7 @@ export default {
// Gitea configuration
gitea: {
url: process.env.GITEA_URL || "https://gitea.giersig.eu",
url: process.env.GITEA_URL || "https://git.wildwuchs.work",
org: process.env.GITEA_ORG || "giersig.eu",
repos: (process.env.GITEA_REPOS || "indiekit-blog,indiekit-server").split(",").filter(Boolean),
},