services.envoy.settings
NixOS option
Specify the configuration for Envoy in Nix.
type: JSON valueDefault
{ }Example
declared in: nixos/modules/services/networking/envoy.nixView source on NixOS/nixpkgs →{
admin = {
access_log_path = "/dev/null";
address = {
socket_address = {
protocol = "TCP";
address = "127.0.0.1";
port_value = 9901;
};
};
};
static_resources = {
listeners = [];
clusters = [];
};
}