From b1c4ca1b7334c38f55877fc36a02951fc02c472d Mon Sep 17 00:00:00 2001 From: Jet Date: Sat, 14 Mar 2026 19:44:46 -0700 Subject: [PATCH] fix: use the raw files for the terms and privacy --- modules/caddy.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/caddy.nix b/modules/caddy.nix index cecf99f..0644c28 100644 --- a/modules/caddy.nix +++ b/modules/caddy.nix @@ -12,8 +12,8 @@ in # minecraft.compsigh.club → redirect to git repo "${domain}" = { extraConfig = '' - redir /terms ${gitRepo}/src/branch/main/terms.txt permanent - redir /privacy ${gitRepo}/src/branch/main/privacy.txt permanent + redir /terms ${gitRepo}/raw/branch/main/terms.txt permanent + redir /privacy ${gitRepo}/raw/branch/main/privacy.txt permanent redir ${gitRepo} permanent ''; };