1
0
mirror of https://git.pvv.ntnu.no/Drift/pvv-nixos-config.git synced 2025-04-10 07:51:22 +02:00
pvv-nixos-config/hosts/ildkule/services/monitoring/prometheus/gitea.nix
2024-09-14 20:21:12 +02:00

17 lines
245 B
Nix

{ ... }:
{
services.prometheus.scrapeConfigs = [{
job_name = "gitea";
scrape_interval = "60s";
scheme = "https";
static_configs = [
{
targets = [
"git.pvv.ntnu.no:443"
];
}
];
}];
}