MyNixOS website logo
option

services.envoy.settings

Specify the configuration for Envoy in Nix.

Declarations
Type
JSON value
Default
{ }
Example
{
  admin = {
    access_log_path = "/dev/null";
    address = {
      socket_address = {
        protocol = "TCP";
        address = "127.0.0.1";
        port_value = 9901;
      };
    };
  };
  static_resources = {
    listeners = [];
    clusters = [];
  };
}