You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
873 B
Plaintext
37 lines
873 B
Plaintext
## Settings should be set
|
|
PORT=9999
|
|
|
|
# Only support redis now. If redis is setup, then enable cache
|
|
CACHE=redis
|
|
CACHE_REDIS_ADDR=redis:6379
|
|
CACHE_REDIS_PASSWORD=
|
|
CACHE_REDIS_DB=3
|
|
|
|
# Credential for internal communication
|
|
BASIC_AUTH_USER=chart_controller
|
|
BASIC_AUTH_PASS=
|
|
|
|
# Multiple tenants
|
|
# Must be set with 1 to support project namespace
|
|
DEPTH=1
|
|
|
|
# Backend storage driver: e.g. "local", "amazon", "google" etc.
|
|
STORAGE=local
|
|
# Storage driver settings
|
|
STORAGE_LOCAL_ROOTDIR=/chart_storage
|
|
## Settings with default values. Just put here for future changes
|
|
DEBUG=false
|
|
LOG_JSON=true
|
|
DISABLE_METRICS=false
|
|
DISABLE_API=false
|
|
DISABLE_STATEFILES=false
|
|
ALLOW_OVERWRITE=true
|
|
CHART_URL=
|
|
AUTH_ANONYMOUS_GET=false
|
|
CONTEXT_PATH=
|
|
INDEX_LIMIT=0
|
|
MAX_STORAGE_OBJECTS=0
|
|
MAX_UPLOAD_SIZE=20971520
|
|
CHART_POST_FORM_FIELD_NAME=chart
|
|
PROV_POST_FORM_FIELD_NAME=prov
|
|
STORAGE_TIMESTAMP_TOLERANCE=1s |