From 791e21ad53c13e643bfd5bcaec2cf4f1011a95ec Mon Sep 17 00:00:00 2001 From: Sven Date: Tue, 21 Apr 2026 23:25:02 +0200 Subject: [PATCH] fix: route funkwhale cover images through internal media server Cover proxy was fetching https://audio.giersig.eu/media/... but the node jail has no outbound internet access. Adds mediaInternalUrl to rewrite those fetches to http://10.100.0.10:8091/media/... instead. Co-Authored-By: Claude Sonnet 4.6 --- indiekit.config.mjs | 1 + 1 file changed, 1 insertion(+) diff --git a/indiekit.config.mjs b/indiekit.config.mjs index 03fc3232..a5949613 100644 --- a/indiekit.config.mjs +++ b/indiekit.config.mjs @@ -376,6 +376,7 @@ export default { token: funkwhaleToken, cacheTtl: funkwhaleCacheTtl, syncInterval: funkwhaleSyncInterval, + mediaInternalUrl: "http://10.100.0.10:8091", }, "@rmdes/indiekit-endpoint-lastfm": { mountPath: "/lastfmapi",