mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-01-18 13:29:32 +01:00
(bug): fixed metrics not working
This commit is contained in:
parent
547b0df57a
commit
fde7763f29
|
@ -21,6 +21,7 @@ in
|
||||||
server_name = "hypervirtual.world";
|
server_name = "hypervirtual.world";
|
||||||
public_baseurl = baseUrl;
|
public_baseurl = baseUrl;
|
||||||
enable_registration = false;
|
enable_registration = false;
|
||||||
|
enable_metrics = true;
|
||||||
listeners = [
|
listeners = [
|
||||||
{
|
{
|
||||||
port = 8008;
|
port = 8008;
|
||||||
|
@ -36,7 +37,6 @@ in
|
||||||
names = [
|
names = [
|
||||||
"client"
|
"client"
|
||||||
"federation"
|
"federation"
|
||||||
"metrics"
|
|
||||||
];
|
];
|
||||||
compress = true;
|
compress = true;
|
||||||
}
|
}
|
||||||
|
@ -48,7 +48,7 @@ in
|
||||||
tls = false;
|
tls = false;
|
||||||
bind_addresses = [
|
bind_addresses = [
|
||||||
"::1"
|
"::1"
|
||||||
"0.0.0.0"
|
"127.0.0.1"
|
||||||
];
|
];
|
||||||
resources = [ ];
|
resources = [ ];
|
||||||
}
|
}
|
||||||
|
@ -87,7 +87,6 @@ in
|
||||||
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue