config.yml configuration as a Nix attribute set.
For details please see the documentation.
Declarations
Type
YAML value
Default
{ }
Example
{
bridge = {
bindAddress = "127.0.0.1";
domain = "example.com";
mediaUrl = "https://example.com";
port = 9993;
url = "http://localhost:8008";
};
listeners = [
{
bindAddress = "0.0.0.0";
port = 9000;
resources = [
"webhooks"
];
}
{
bindAddress = "localhost";
port = 9001;
resources = [
"metrics"
"provisioning"
];
}
];
}