mirror of
https://github.com/chirpstack/chirpstack.git
synced 2024-12-19 13:17:55 +00:00
e917f8ea49
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
34 lines
409 B
Plaintext
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
|