Add monitoring_network | Add recommended coraza.conf

- Add monitoring_network for prometheus instance
- Add Crowdsec & Caddy scrapes
- Install make as dependency
- Add Makefile for easily executing caddy commands
This commit is contained in:
2025-01-26 15:23:31 -03:00
parent 0a7e94b190
commit d02cccedfc
10 changed files with 270 additions and 31 deletions

8
utils/install_make.sh Normal file
View File

@@ -0,0 +1,8 @@
#!/bin/bash
function install_make() {
echo "[ UTILS ]: Installing Make"
sudo apt update
sudo apt install build-essential
echo "[ UTILS ]: Make installed succesfully"
}