2024-04-28 17:05:12 +00:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
flake,
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
let
|
|
|
|
# Find element in list config.services.matrix-synapse.settings.listeners
|
|
|
|
# that sets type = "metrics"
|
|
|
|
listenerWithMetrics =
|
|
|
|
lib.findFirst (listener: listener.type == "metrics")
|
|
|
|
(throw "Found no matrix-synapse.settings.listeners.*.type containing string metrics")
|
|
|
|
config.services.matrix-synapse.settings.listeners;
|
|
|
|
synapseMetricsPort = "${toString listenerWithMetrics.port}";
|
|
|
|
in
|
|
|
|
{
|
|
|
|
services.nginx.virtualHosts = {
|
2024-06-01 12:46:29 +00:00
|
|
|
"nachtigall.wg.${config.pub-solar-os.networking.domain}" = {
|
|
|
|
listenAddresses = [
|
|
|
|
"10.7.6.1"
|
2024-06-04 23:59:54 +00:00
|
|
|
"[fd00:fae:fae:fae:fae:1::]"
|
2024-06-01 12:46:29 +00:00
|
|
|
];
|
2024-04-28 17:05:12 +00:00
|
|
|
locations."/metrics" = {
|
|
|
|
proxyPass = "http://127.0.0.1:${toString (config.services.prometheus.exporters.node.port)}";
|
|
|
|
};
|
|
|
|
locations."/_synapse/metrics" = {
|
|
|
|
proxyPass = "http://127.0.0.1:${synapseMetricsPort}";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|