@@ -32,10 +32,12 @@ proxy:
3232 forwardedProto : " auto"
3333 # -- Comma-separated CIDR ranges of trusted upstream proxies.
3434 trustedProxies : " "
35- # -- Enable PROXY protocol (v1/v2) on TCP listeners.
36- # Required when behind L4 proxies that support PROXY protocol.
37- # that use PROXY protocol to forward real client IPs.
35+ # -- Enable PROXY protocol (v1/v2) on TCP listeners for preserving client IPs.
3836 proxyProtocol : false
37+ # -- Cap per-service backend dial timeout (e.g. "10s"). Empty or "0" means no cap.
38+ maxDialTimeout : " "
39+ # -- Cap per-service session idle timeout (e.g. "5m"). Empty or "0" means no cap.
40+ maxSessionIdleTimeout : " "
3941
4042# -- Allow users to choose a specific listen port for TCP/UDP services.
4143# When false, ports are auto-assigned by management. When true, users
@@ -54,6 +56,9 @@ requireSubdomain: false
5456# network namespace and all listen ports are directly reachable.
5557hostNetwork : false
5658
59+ # -- Pre-shared key for the tunnel between proxy and peers.
60+ preSharedKey : " "
61+
5762netbirdPort :
5863 # -- Expose the NetBird UDP port for direct peer connectivity.
5964 enabled : false
7580 eabHmacKey : " "
7681 # -- Certificate lock method: auto, flock, or k8s-lease.
7782 certLockMethod : " k8s-lease"
83+ # -- Directory containing wildcard certificate pairs (<name>.crt/<name>.key).
84+ wildcardCertDir : " "
7885
7986# -- Static TLS certificate configuration (used when acme.enabled=false).
8087tls :
@@ -121,8 +128,8 @@ health:
121128 address : " :8080"
122129
123130logging :
124- # -- Enable debug- level logging .
125- debug : false
131+ # -- Log level: panic, fatal, error, warn, info, debug, trace .
132+ level : " info "
126133
127134# -- Directory where certificates are stored inside the container.
128135certDir : " /certs"
0 commit comments