23 lines
673 B
Bash
23 lines
673 B
Bash
SERVICE_GROUP_NAME=devkit
|
|
NETWORK_NAME=devkit
|
|
NETWORK_RANGE=192.168.123.0/24
|
|
|
|
NGINX_PORT=44100
|
|
|
|
# Password for the 'elastic' user (at least 6 characters)
|
|
ELASTIC_PASSWORD=helloworld
|
|
# Password for the 'kibana_system' user (at least 6 characters)
|
|
KIBANA_PASSWORD=helloworld
|
|
# Version of Elastic products
|
|
ES_STACK_VERSION=8.14.2
|
|
# Set the cluster name
|
|
ES_CLUSTER_NAME=es-cluster
|
|
# Set to 'basic' or 'trial' to automatically start the 30-day trial
|
|
ES_LICENSE=basic
|
|
# Port to expose Elasticsearch HTTP API to the host
|
|
ES_PORT=9200
|
|
# Port to expose Kibana to the host
|
|
KIBANA_PORT=5601
|
|
# Increase or decrease based on the available host memory (in bytes)
|
|
ES_MEM_LIMIT=2147483648
|