From da3e6c8cde417998bca3551d02340b78655ed7f2 Mon Sep 17 00:00:00 2001 From: Orne Brocaar Date: Sat, 3 Jun 2023 13:13:46 +0100 Subject: [PATCH] Fix incorrect config template key. --- chirpstack/src/cmd/configfile.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/chirpstack/src/cmd/configfile.rs b/chirpstack/src/cmd/configfile.rs index a3f640c3..25c4fc75 100644 --- a/chirpstack/src/cmd/configfile.rs +++ b/chirpstack/src/cmd/configfile.rs @@ -607,7 +607,9 @@ pub fn run() { # # Note: this interface is used both for passive-roaming and when # integrating with Join Servers that implement the async interface. - bind="{{ api.bind }}" + # Leaving this option blank will disable the Backend Interfaces API, + # which is fine in most cases. + bind="{{ backend_interfaces.bind }}" # CA certificate (path). ca_cert="{{ backend_interfaces.ca_cert }}"