-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdot_env.example
31 lines (26 loc) · 1010 Bytes
/
dot_env.example
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
# GeoIP token
IPIFO_TOKEN = "<Your TOKEN HERE>"
# Uvicorn Config
HTTP_IP = "0.0.0.0"
HTTP_PORT = 8000
# Cache Config
CACHE_TTL = 604800
CACHE_MAXSIZE = 40000
# MongoDB Config
MONGO_HOST = "192.168.0.100"
MONGO_PORT = 27017
MONGO_USER = ""
MONGO_PASS = ""
# For testing
#MONGO_DB_TEST = "testdb"
#MONGO_TEST_COLLECTION = "testcollection"
MONGO_DB="cyber_analysis" # This is the database name
# Collections for different types of data
MONGO_FW_COLLECTION="firewall_logs" # Collection for Firewall logs
MONGO_NGINX_COLLECTION="nginx_logs" # Collection for Nginx logs
MONGO_POSTFIX_COLLECTION="postfix_logs" # Collection for Postfix logs
# Collections for different types of data
MONGO_WHOIS_COLLECTION="whois_info" # Collection for Whois data
MONGO_GEOIP_COLLECTION="geoip_info" # Collection for GeoIP data
MONGO_IPWHOIS_COLLECTION="ipwhois_info" # Collection for IPWhois data
MONGO_USER_COLLECTION="user_info" # Collection for User data