chirpstack/.gitignore
Orne Brocaar e917f8ea49 Remove default CA and MQTT cert gen. on install.
In case of mult-server deployments, this can be confusing as each VM
generates different certificate files by default, where all instances
must share the same certificate (or at least CA certificate + key).
The other issue is that the MQTT broker certificate must contain the
correct hostname, which can (most of the times) not automatically be
retrieved. Documentation to generate these certificates can be found
here:

https://www.chirpstack.io/docs/guides/mosquitto-tls-configuration.html
2022-08-21 19:56:49 +01:00

34 lines
409 B
Plaintext

# hidden files
.*
!/chirpstack/.rpm
!/.cargo
# Log files
*.log
# Binary packages
/dist
# Rust target directory
**/target
# Certificates
/chirpstack/configuration/certs/*
/chirpstack/configuration/private_*.toml
# UI
/ui/node_modules
/ui/build
# API
/api/js/node_modules
/api/python/src/*.egg-info/
/api/python/src/build/
/api/python/src/dist/
# Bitbake recipes
*.bb
# Exclude from gitignore
!/.github