Atualização - 16/04/2026 - 11:36
This commit is contained in:
27
hosts/host02/fluent-bit.conf
Normal file
27
hosts/host02/fluent-bit.conf
Normal file
@@ -0,0 +1,27 @@
|
||||
# cat /etc/fluent-bit/fluent-bit.conf
|
||||
[SERVICE]
|
||||
Flush 1
|
||||
Log_Level info
|
||||
Daemon off
|
||||
# Parsers_File parsers.conf
|
||||
|
||||
# Coleta logs do Apache
|
||||
[INPUT]
|
||||
Name tail
|
||||
Path /var/log/apache2/access.log
|
||||
Tag apache-logs-acesso
|
||||
# Parser apache2
|
||||
|
||||
# Envio para o RK-SIEM-CORE
|
||||
[OUTPUT]
|
||||
Name opensearch
|
||||
Match apache-logs-acesso
|
||||
Host 172.20.0.1
|
||||
Port 9200
|
||||
Index host02-logs
|
||||
Type _doc
|
||||
HTTP_User admin
|
||||
HTTP_Passwd admin
|
||||
tls On
|
||||
tls.verify Off
|
||||
Suppress_Type_Name On
|
||||
22
hosts/host03/docker-compose.yml
Normal file
22
hosts/host03/docker-compose.yml
Normal file
@@ -0,0 +1,22 @@
|
||||
services:
|
||||
rk-siem-host03:
|
||||
# image: ricardokleber/rk-siem-host03:latest
|
||||
image: docker.ifrncn.com.br/rk/rk-windows:latest
|
||||
container_name: rk-siem-host03
|
||||
devices:
|
||||
- /dev/kvm # Essencial para aceleração de hardware (KVM)
|
||||
cap_add:
|
||||
- NET_ADMIN
|
||||
ports:
|
||||
- 8006:8006 # Interface Web (NoVNC)
|
||||
volumes:
|
||||
- ./dados:/storage
|
||||
stop_grace_period: 2m
|
||||
restart: on-failure
|
||||
environment:
|
||||
VERSION: "7u" # Define a versão (win11, win10, etc)
|
||||
RAM_SIZE: "2G" # Mínimo recomendado para Win11
|
||||
CPU_CORES: "2" # Quantidade de núcleos
|
||||
DISK_SIZE: "15G" # Tamanho do disco virtual
|
||||
USERNAME: "admin"
|
||||
PASSWORD: "admin"
|
||||
Reference in New Issue
Block a user