mirror of
https://git.pvv.ntnu.no/Drift/pvv-nixos-config.git
synced 2025-04-05 21:51:21 +02:00
Compare commits
No commits in common. "5a76b627001ec991e8450ffdd2f679801ece4e97" and "47fa3759c3f812658d015f9cc2fb266a64063cf6" have entirely different histories.
5a76b62700
...
47fa3759c3
@ -55,11 +55,6 @@ in {
|
|||||||
USER = "gitea@pvv.ntnu.no";
|
USER = "gitea@pvv.ntnu.no";
|
||||||
SUBJECT_PREFIX = "[pvv-git]";
|
SUBJECT_PREFIX = "[pvv-git]";
|
||||||
};
|
};
|
||||||
metrics = {
|
|
||||||
ENABLED = true;
|
|
||||||
ENABLED_ISSUE_BY_LABEL = true;
|
|
||||||
ENABLED_ISSUE_BY_REPOSITORY = true;
|
|
||||||
};
|
|
||||||
indexer.REPO_INDEXER_ENABLED = true;
|
indexer.REPO_INDEXER_ENABLED = true;
|
||||||
service = {
|
service = {
|
||||||
DISABLE_REGISTRATION = true;
|
DISABLE_REGISTRATION = true;
|
||||||
@ -114,20 +109,11 @@ in {
|
|||||||
forceSSL = true;
|
forceSSL = true;
|
||||||
enableACME = true;
|
enableACME = true;
|
||||||
kTLS = true;
|
kTLS = true;
|
||||||
locations = {
|
locations."/" = {
|
||||||
"/" = {
|
proxyPass = "http://unix:${cfg.settings.server.HTTP_ADDR}";
|
||||||
proxyPass = "http://unix:${cfg.settings.server.HTTP_ADDR}";
|
extraConfig = ''
|
||||||
extraConfig = ''
|
client_max_body_size 512M;
|
||||||
client_max_body_size 512M;
|
'';
|
||||||
'';
|
|
||||||
};
|
|
||||||
"/metrics" = {
|
|
||||||
proxyPass = "http://unix:${cfg.settings.server.HTTP_ADDR}";
|
|
||||||
extraConfig = ''
|
|
||||||
allow ${values.hosts.ildkule.ipv4}/32;
|
|
||||||
deny all;
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -75,12 +75,6 @@ in {
|
|||||||
url = "https://grafana.com/api/dashboards/240/revisions/3/download";
|
url = "https://grafana.com/api/dashboards/240/revisions/3/download";
|
||||||
options.path = dashboards/go-processes.json;
|
options.path = dashboards/go-processes.json;
|
||||||
}
|
}
|
||||||
{
|
|
||||||
name = "Gitea Dashbaord";
|
|
||||||
type = "file";
|
|
||||||
url = "https://grafana.com/api/dashboards/17802/revisions/3/download";
|
|
||||||
options.path = dashboards/gitea-dashbaord.json;
|
|
||||||
}
|
|
||||||
];
|
];
|
||||||
|
|
||||||
};
|
};
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{ config, ... }: {
|
{ config, ... }: {
|
||||||
imports = [
|
imports = [
|
||||||
./gitea.nix
|
./gogs.nix
|
||||||
./matrix-synapse.nix
|
./matrix-synapse.nix
|
||||||
# TODO: enable once https://github.com/NixOS/nixpkgs/pull/242365 gets merged
|
# TODO: enable once https://github.com/NixOS/nixpkgs/pull/242365 gets merged
|
||||||
# ./mysqld.nix
|
# ./mysqld.nix
|
||||||
|
@ -1,16 +0,0 @@
|
|||||||
{ ... }:
|
|
||||||
{
|
|
||||||
services.prometheus.scrapeConfigs = [{
|
|
||||||
job_name = "gitea";
|
|
||||||
scrape_interval = "60s";
|
|
||||||
scheme = "https";
|
|
||||||
|
|
||||||
static_configs = [
|
|
||||||
{
|
|
||||||
targets = [
|
|
||||||
"git.pvv.ntnu.no:443"
|
|
||||||
];
|
|
||||||
}
|
|
||||||
];
|
|
||||||
}];
|
|
||||||
}
|
|
16
hosts/ildkule/services/monitoring/prometheus/gogs.nix
Normal file
16
hosts/ildkule/services/monitoring/prometheus/gogs.nix
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
{ config, ... }: let
|
||||||
|
cfg = config.services.prometheus;
|
||||||
|
in {
|
||||||
|
services.prometheus.scrapeConfigs = [{
|
||||||
|
job_name = "git-gogs";
|
||||||
|
scheme = "https";
|
||||||
|
metrics_path = "/-/metrics";
|
||||||
|
static_configs = [
|
||||||
|
{
|
||||||
|
targets = [
|
||||||
|
"essendrop.pvv.ntnu.no:443"
|
||||||
|
];
|
||||||
|
}
|
||||||
|
];
|
||||||
|
}];
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user