-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.env
64 lines (47 loc) · 1.64 KB
/
.env
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
56
57
58
59
60
61
62
63
64
# Project namespace (defaults to the current folder name if not set)
COMPOSE_PROJECT_NAME=dshield-elk
# Password for the 'elastic' user (at least 6 characters)
ELASTIC_PASSWORD=student
# Password for the 'kibana_system' user (at least 6 characters)
KIBANA_PASSWORD=changeme
# Version of Elastic products
STACK_VERSION=8.15.3
# Set the cluster name
CLUSTER_NAME=docker-cluster
# Set hostname which will be imported in the SSL certificate
HOSTNAME="ubuntu"
# Set IP which will be imported in the SSL certificate
IPADDRESS="192.168.25.231"
# DNS Servers-Used for DNS lookups in the logstash filters
DNS_SERVER="9.9.9.9"
# Set to 'basic' or 'trial' to automatically start the 30-day trial
LICENSE=basic
#LICENSE=trial
# Port to expose Elasticsearch HTTP API to the host
ES_PORT=9200
# Port to expose Kibana to the host
KIBANA_PORT=5601
# Port to expose Kibana to the host
LOGSTASH_PORT=5044
LOGSTASH_API_PORT=9600
# Port for elastic-agent
FLEET_PORT=8220
# Port for APM server
APMSERVER_PORT=8200
# Port for Metricbeat & Filebeat server
METRICBEAT_PORT=5066
FILEBEAT_PORT=5067
FILEBEAT01_PORT=5068
# Increase or decrease based on the available host memory (in bytes)
# This may require more RAM in order to run with an heavier load.
# Adjust this as needed.
# Monitor how much RAM is your docker is using for each services by running this command: sudo docker stats
# 1 GB = 1073741824
# ES_MEM = Elasticsearch, KB_MEM = Kibana, LS_MEM = Logstash
ES_MEM_LIMIT=3g
LS_MEM_LIMIT=2g
KB_MEM_LIMIT=2g
# SAMPLE Predefined Key only to be used in POC environments
ENCRYPTION_KEY=c34d38b3a14956121ff2170e5030b471551370178f43e5626eec58b04a30fae2
# scripts
SCRIPTS_DIR=./scripts