This commit is contained in:
Ellie 2026-05-09 13:04:52 -07:00
parent 5b1dd88d36
commit c30aa2526e
4 changed files with 67 additions and 22 deletions

View file

@ -21,4 +21,12 @@
SSH_LISTEN_PORT = 2222;
};
};
# Forgejo binds HTTP to 10.10.0.2 (the wg0 inner address). Without this
# ordering, forgejo races wireguard at boot, fails to bind, and stays up
# only on its all-interfaces SSH listener — leaving the web UI 502'd.
systemd.services.forgejo = {
after = [ "wireguard-wg0.service" ];
requires = [ "wireguard-wg0.service" ];
};
}