-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig.yaml
36 lines (26 loc) · 922 Bytes
/
config.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Description: system config file
# Kafka Server address:port (127.0.0.0:9092)
kafka_server: "127.0.0.1:9092"
# Mysql Server address:port (127.0.0.1:3306)
mysql_server: "127.0.0.1:3306"
# Mysql Config:user&password&database name
mysql_user: " "
mysql_password: " "
mysql_database: " "
# database config
mysql_max_idle_conns: 20
mysql_max_open_conns: 1000
# Web Server (":8888" or "127.0.0.1:8888")
web_addr: "127.0.0.1:8888"
# Snort&Suricata Rules Path
rules_path: "./etc/RulesPath/"
# IpLocation Databases Path
# please update in time from https://dev.maxmind.com/geoip/geoip2/geolite2/
ip_location_db: "./etc/LocationDatabase/GeoLite2-City.mmdb"
# Machine Learning Model Path
model_path: "./etc/model/keras/"
# Temporary files path
temp_path: "./etc/temp/"
# Yara Rule Files Path (Optional)
# Notice:This part of the functionality(Yara Detect) is not yet integrated into the system!
yara_file: "./yarafile/"