From 85fd24180a99d5a11a6c1e1ada0f45143de9d898 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torjus=20H=C3=A5kestad?= Date: Wed, 19 Mar 2025 22:36:46 +0100 Subject: [PATCH] Remove deprecated features from config example --- apiary.toml | 31 +------------------------------ 1 file changed, 1 insertion(+), 30 deletions(-) diff --git a/apiary.toml b/apiary.toml index 82e01fb..1bc1fcb 100644 --- a/apiary.toml +++ b/apiary.toml @@ -38,7 +38,7 @@ LogLevel = "INFO" # Enable access logging # Default: true AccessLogEnable = true -# Disable logging of successful requests to metrics endpoint +# Disable logging of requests to metrics endpoint # Default: false AccessLogIgnoreMetrics = false # Address and port to listen to @@ -63,32 +63,3 @@ CacheDir = "/var/apiary/certs" # Default: true RedirectHTTP = true -[Ports] -# Enable the port listener. -# Default: false -Enable = false - -# Which address to listen on. -# Default: "" (listen to all addresses) -Addr = "" - -# Which TCP ports to listen to. -# Default: [] -TCPPorts = ["25"] - -# Which UDP ports to listen to. -# Default: [] -UDPPorts = ["25"] - -[SMTP] -# Enable the port listener. -# Default: false -Enable = true - -# Which address and port to listen on. -# Default: ":25" -Addr = ":25" - -# Enable collecting prometheus metrics -# Default: false -EnableMetrics = true