Files
Pip a2639c002f CUB-231: Mosquitto MQTT broker setup on Pi Zero 2 W hub
- Install script for Mosquitto MQTT broker on Pi Zero 2 W (10.60.1.101)
- Persistence enabled with data stored in /var/lib/mosquitto/data/
- Topic ACL configuration for hub, sensor, mobile, and admin users
- systemd service with security hardening (NoNewPrivileges, ProtectSystem)
- Configuration files: mosquitto.conf, acl.conf
- Validation script to verify setup before deployment
2026-05-23 13:31:58 +00:00

34 lines
293 B
Plaintext

# .gitignore for Mosquitto Hub Config
# Don't commit sensitive files
/etc/mosquitto/passwd
*.pem
*.key
*.crt
# Generated files
*.log
*.bak
*~
# IDE
.idea/
.vscode/
*.swp
*.swo
*~
# OS
.DS_Store
Thumbs.db
# Temporary files
/tmp/
/var/tmp/
*.tmp
# Python
__pycache__/
*.py[cod]
*$py.class