Files
nixos-macmini/modules/services/anubis.nix
2026-01-27 16:06:00 +00:00

18 lines
338 B
Nix

{ ... }:
{
services.anubis = {
instances = {
gitea = {
enable = true;
settings = {
BIND = "localhost:3001";
BIND_NETWORK = "tcp";
TARGET = "http://localhost:3000/";
WEBMASTER_EMAIL = "i@colorsky.fun";
SERVE_ROBOTS_TXT = true;
};
};
};
};
}