37 lines
No EOL
771 B
YAML
37 lines
No EOL
771 B
YAML
# Fylgja Configuration File
|
|
# This file contains all configurable settings for the Fylgja Slack bot
|
|
|
|
# Slack settings
|
|
slack:
|
|
bot_token: "xoxb-TOKEN_HERE"
|
|
signing_secret: "SIGNING_SECRET_HERE"
|
|
|
|
# Server settings
|
|
server:
|
|
port: 3000
|
|
|
|
# Paths configuration
|
|
paths:
|
|
sigma_repo_dir: "./sigma-repo"
|
|
db_path: "./sigma.db"
|
|
|
|
# Sigma settings
|
|
sigma:
|
|
sigma-cli:
|
|
path: "./.venv/bin/sigma"
|
|
backend: "lucene"
|
|
target: "ecs_windows"
|
|
format: "siem_rule_ndjson"
|
|
repo:
|
|
url: "https://github.com/SigmaHQ/sigma.git"
|
|
branch: "main"
|
|
|
|
# Elastic settings
|
|
elastic:
|
|
api-endpoint: "http://localhost:5601/api/detection_engine/rules"
|
|
elastic-authentication-credentials: "elastic:changeme"
|
|
|
|
# Logging settings
|
|
logging:
|
|
level: "debug"
|
|
file: "./logs/fylgja.log" |