mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 11:42:29 +08:00
488e3c3d56
Co-authored-by: 天魂 <365125264@qq.com>
43 lines
1.3 KiB
Plaintext
43 lines
1.3 KiB
Plaintext
# ------------------------------
|
|
# Environment Variables for db Service
|
|
# ------------------------------
|
|
PGUSER=postgres
|
|
# The password for the default postgres user.
|
|
POSTGRES_PASSWORD=difyai123456
|
|
# The name of the default postgres database.
|
|
POSTGRES_DB=dify
|
|
# postgres data directory
|
|
PGDATA=/var/lib/postgresql/data/pgdata
|
|
|
|
|
|
# ------------------------------
|
|
# Environment Variables for qdrant Service
|
|
# (only used when VECTOR_STORE is qdrant)
|
|
# ------------------------------
|
|
QDRANT_API_KEY=difyai123456
|
|
|
|
# ------------------------------
|
|
# Environment Variables for sandbox Service
|
|
API_KEY=dify-sandbox
|
|
GIN_MODE=release
|
|
WORKER_TIMEOUT=15
|
|
ENABLE_NETWORK=true
|
|
HTTP_PROXY=http://ssrf_proxy:3128
|
|
HTTPS_PROXY=http://ssrf_proxy:3128
|
|
SANDBOX_PORT=8194
|
|
# ------------------------------
|
|
|
|
# ------------------------------
|
|
# Environment Variables for weaviate Service
|
|
# (only used when VECTOR_STORE is weaviate)
|
|
# ------------------------------
|
|
QUERY_DEFAULTS_LIMIT=25
|
|
AUTHENTICATION_ANONYMOUS_ACCESS_ENABLED=true
|
|
DEFAULT_VECTORIZER_MODULE=none
|
|
CLUSTER_HOSTNAME=node1
|
|
AUTHENTICATION_APIKEY_ENABLED=true
|
|
AUTHENTICATION_APIKEY_ALLOWED_KEYS=WVF5YThaHlkYwhGUSmCRgsX3tD5ngdN8pkih
|
|
AUTHENTICATION_APIKEY_USERS=hello@dify.ai
|
|
AUTHORIZATION_ADMINLIST_ENABLED=true
|
|
AUTHORIZATION_ADMINLIST_USERS=hello@dify.ai
|