-
Notifications
You must be signed in to change notification settings - Fork 21
/
.env.example
55 lines (43 loc) · 1.46 KB
/
.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# General
COMPOSE_PROJECT_NAME=taranis-ng
HTTP_PROXY=
HTTPS_PROXY=
# Versions
REDIS_TAG=6-alpine
POSTGRES_TAG=16-alpine
TARANIS_NG_TAG=v24.11.1
# Timezone for all containers
TZ=Europe/Bratislava
# Force language
VUE_APP_TARANIS_NG_LOCALE=""
# Paths
CVE_UPDATE_FILE=/data/cve_dictionary.xml
CPE_UPDATE_FILE=/data/cpe_dictionary.xml
CWE_UPDATE_FILE=/data/cwe_dictionary.xml
# Web host and ports
TARANIS_NG_HOSTNAME=localhost
TARANIS_NG_HTTPS_PORT=4443
TARANIS_NG_HTTP_PORT=8080
TARANIS_NG_HTTPS_URI=https://localhost:4443
TARANIS_NG_AUTHENTICATOR=password
# To use LDAP authentication, adjust the following lines to your LDAP server,
# change TARANIS_NG_AUTHENTICATOR to ldap and add CA certificate to "auth/ldap_ca.pem"
# or point LDAP_CA_CERT_PATH to it.
LDAP_SERVER=ldaps://ldap.example.com
LDAP_BASE_DN="ou=people,dc=example,dc=com"
TRAEFIK_MANAGEMENT_PORT=127.0.0.1:8081
# Limits
DB_SHARED_BUFFERS=64MB
DB_MAX_CONNECTIONS=1000
# Ports
PRESENTER_PORT=5002
# Standalone Keycloak
KEYCLOAK_USER=admin
KEYCLOAK_PASSWORD=supersecret
POSTGRES_KEYCLOAK_PASSWORD=supersecret
# Logging of Taranis-NG and used Python modules
TARANIS_LOG_LEVEL=DEBUG
MODULES_LOG_LEVEL=WARN
# To change Traefik logging, go to traefik.yml and set it there there
# To change Nginx log level, go to docker-compose.yml and change NGINX_LOG_LEVEL and NGINX_ACCESS_LOG there
# To change Redis log level, go to docker-compose.yml and change --loglevel there