Added nginx upload limit

This commit is contained in:
2026-05-13 22:59:35 +02:00
parent 8064f499a8
commit c0b0d89fcf
5 changed files with 114 additions and 80 deletions
+23 -1
View File
@@ -134,7 +134,7 @@ in
metrics_path = "/_synapse/metrics";
static_configs = [
{
targets = [ "127.0.0.1:9009" ];
targets = [ "100.109.10.91:9009" ];
labels = {
instance = config.networking.hostName;
job = "master";
@@ -143,6 +143,28 @@ in
}
];
}
{
job_name = "postgresql-replica";
static_configs = [
{
targets = [ "localhost:9188" ];
labels = {
instance = config.networking.hostName;
};
}
];
}
{
job_name = "postgresql-proxy";
static_configs = [
{
targets = [ "100.109.10.91:9188" ];
labels = {
instance = "cyper-proxy";
};
}
];
}
]
++ (lib.mapAttrsToList mkNodeJob extraNodes)
++ (mkWeatherScrapeConfigs weatherCities);