Files
Pagerino_Portainer/Chirpstack_v4/configuration/chirpstack-gateway-bridge/chirpstack-gateway-bridge.toml
2025-09-11 22:26:30 +02:00

47 lines
1.2 KiB
TOML

# See https://www.chirpstack.io/gateway-bridge/install/config/ for a full
# configuration example and documentation.
# [integration.mqtt.auth.generic]
# servers=["tcp://mosquitto:1883"]
# username=""
# password=""
# Gateway backend configuration.
[backend]
# Backend type.
#
# Valid options are:
# * semtech_udp
# * concentratord
# * basic_station
type="semtech_udp"
# Semtech UDP packet-forwarder backend.
[backend.semtech_udp]
# ip:port to bind the UDP listener to
#
# Example: 0.0.0.0:1700 to listen on port 1700 for all network interfaces.
# This is the listener to which the packet-forwarder forwards its data
# so make sure the 'serv_port_up' and 'serv_port_down' from your
# packet-forwarder matches this port.
udp_bind = "0.0.0.0:1700"
# Fake RX timestamp.
#
# Fake the RX time when the gateway does not have GPS, in which case
# the time would otherwise be unset.
fake_rx_time=false
[integration.mqtt.auth.generic]
servers=["ssl://mosquitto:8883"]
username=""
password=""
ca_cert="/etc/chirpstack-gateway-bridge/certs/ca.pem"
tls_cert="/etc/chirpstack-gateway-bridge/certs/client.pem"
tls_key="/etc/chirpstack-gateway-bridge/certs/client.key"