fix: point to the forgejo platform

This commit is contained in:
Jet 2026-03-14 19:04:49 -07:00
parent a22f45df0c
commit a75fa022ce
No known key found for this signature in database

View file

@ -2,7 +2,7 @@
let
domain = "mc.compsigh.club";
gitRepo = "https://github.com/compsigh/minecraft";
gitRepo = "https://git.extremist.software/jet/compsigh-minecraft";
in
{
services.caddy = {
@ -12,8 +12,8 @@ in
# minecraft.compsigh.club → redirect to git repo
"${domain}" = {
extraConfig = ''
redir /terms ${gitRepo}/blob/main/terms.txt permanent
redir /privacy ${gitRepo}/blob/main/privacy.txt permanent
redir /terms ${gitRepo}/src/branch/main/terms.txt permanent
redir /privacy ${gitRepo}/src/branch/main/privacy.txt permanent
redir ${gitRepo} permanent
'';
};