this repo has no description
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat(wolumonde): add anubis forgejo metrics

dusk bf8f2788 aafae8df

+7
+7
hosts/wolumonde/modules/forgejo.nix
··· 48 48 services.anubis.instances."forgejo".settings = { 49 49 BIND = ":6293"; 50 50 BIND_NETWORK = "tcp"; 51 + METRICS_BIND = ":9090"; 52 + METRICS_BIND_NETWORK = "tcp"; 51 53 TARGET = "http://localhost:${toString forgejoCfg.server.HTTP_PORT}"; 52 54 WEBMASTER_EMAIL = "90008@gaze.systems"; 53 55 SERVE_ROBOTS_TXT = true; ··· 61 63 job_name = "forgejo"; 62 64 metrics_path = "/metrics"; 63 65 static_configs = [ { targets = [ "localhost:${toString forgejoCfg.server.HTTP_PORT}" ]; } ]; 66 + } 67 + { 68 + job_name = "anubis_forgejo"; 69 + metrics_path = "/metrics"; 70 + static_configs = [ { targets = [ "localhost${anubisCfg.METRICS_BIND}" ]; } ]; 64 71 } 65 72 ]; 66 73 }