.env.example 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916
  1. # ------------------------------
  2. # Environment Variables for API service & worker
  3. # ------------------------------
  4. # ------------------------------
  5. # Common Variables
  6. # ------------------------------
  7. # The backend URL of the console API,
  8. # used to concatenate the authorization callback.
  9. # If empty, it is the same domain.
  10. # Example: https://api.console.dify.ai
  11. CONSOLE_API_URL=
  12. # The front-end URL of the console web,
  13. # used to concatenate some front-end addresses and for CORS configuration use.
  14. # If empty, it is the same domain.
  15. # Example: https://console.dify.ai
  16. CONSOLE_WEB_URL=
  17. # Service API Url,
  18. # used to display Service API Base Url to the front-end.
  19. # If empty, it is the same domain.
  20. # Example: https://api.dify.ai
  21. SERVICE_API_URL=
  22. # WebApp API backend Url,
  23. # used to declare the back-end URL for the front-end API.
  24. # If empty, it is the same domain.
  25. # Example: https://api.app.dify.ai
  26. APP_API_URL=
  27. # WebApp Url,
  28. # used to display WebAPP API Base Url to the front-end.
  29. # If empty, it is the same domain.
  30. # Example: https://app.dify.ai
  31. APP_WEB_URL=
  32. # File preview or download Url prefix.
  33. # used to display File preview or download Url to the front-end or as Multi-model inputs;
  34. # Url is signed and has expiration time.
  35. FILES_URL=
  36. # ------------------------------
  37. # Server Configuration
  38. # ------------------------------
  39. # The log level for the application.
  40. # Supported values are `DEBUG`, `INFO`, `WARNING`, `ERROR`, `CRITICAL`
  41. LOG_LEVEL=INFO
  42. # Log file path
  43. LOG_FILE=
  44. # Log file max size, the unit is MB
  45. LOG_FILE_MAX_SIZE=20
  46. # Log file max backup count
  47. LOG_FILE_BACKUP_COUNT=5
  48. # Log dateformat
  49. LOG_DATEFORMAT=%Y-%m-%d %H:%M:%S
  50. # Log Timezone
  51. LOG_TZ=UTC
  52. # Debug mode, default is false.
  53. # It is recommended to turn on this configuration for local development
  54. # to prevent some problems caused by monkey patch.
  55. DEBUG=false
  56. # Flask debug mode, it can output trace information at the interface when turned on,
  57. # which is convenient for debugging.
  58. FLASK_DEBUG=false
  59. # A secretkey that is used for securely signing the session cookie
  60. # and encrypting sensitive information on the database.
  61. # You can generate a strong key using `openssl rand -base64 42`.
  62. SECRET_KEY=sk-9f73s3ljTXVcMT3Blb3ljTqtsKiGHXVcMT3BlbkFJLK7U
  63. # Password for admin user initialization.
  64. # If left unset, admin user will not be prompted for a password
  65. # when creating the initial admin account.
  66. INIT_PASSWORD=
  67. # Deployment environment.
  68. # Supported values are `PRODUCTION`, `TESTING`. Default is `PRODUCTION`.
  69. # Testing environment. There will be a distinct color label on the front-end page,
  70. # indicating that this environment is a testing environment.
  71. DEPLOY_ENV=PRODUCTION
  72. # Whether to enable the version check policy.
  73. # If set to empty, https://updates.dify.ai will be called for version check.
  74. CHECK_UPDATE_URL=https://updates.dify.ai
  75. # Used to change the OpenAI base address, default is https://api.openai.com/v1.
  76. # When OpenAI cannot be accessed in China, replace it with a domestic mirror address,
  77. # or when a local model provides OpenAI compatible API, it can be replaced.
  78. OPENAI_API_BASE=https://api.openai.com/v1
  79. # When enabled, migrations will be executed prior to application startup
  80. # and the application will start after the migrations have completed.
  81. MIGRATION_ENABLED=true
  82. # File Access Time specifies a time interval in seconds for the file to be accessed.
  83. # The default value is 300 seconds.
  84. FILES_ACCESS_TIMEOUT=300
  85. # Access token expiration time in minutes
  86. ACCESS_TOKEN_EXPIRE_MINUTES=60
  87. # The maximum number of active requests for the application, where 0 means unlimited, should be a non-negative integer.
  88. APP_MAX_ACTIVE_REQUESTS=0
  89. # ------------------------------
  90. # Container Startup Related Configuration
  91. # Only effective when starting with docker image or docker-compose.
  92. # ------------------------------
  93. # API service binding address, default: 0.0.0.0, i.e., all addresses can be accessed.
  94. DIFY_BIND_ADDRESS=0.0.0.0
  95. # API service binding port number, default 5001.
  96. DIFY_PORT=5001
  97. # The number of API server workers, i.e., the number of gevent workers.
  98. # Formula: number of cpu cores x 2 + 1
  99. # Reference: https://docs.gunicorn.org/en/stable/design.html#how-many-workers
  100. SERVER_WORKER_AMOUNT=
  101. # Defaults to gevent. If using windows, it can be switched to sync or solo.
  102. SERVER_WORKER_CLASS=
  103. # Similar to SERVER_WORKER_CLASS. Default is gevent.
  104. # If using windows, it can be switched to sync or solo.
  105. CELERY_WORKER_CLASS=
  106. # Request handling timeout. The default is 200,
  107. # it is recommended to set it to 360 to support a longer sse connection time.
  108. GUNICORN_TIMEOUT=360
  109. # The number of Celery workers. The default is 1, and can be set as needed.
  110. CELERY_WORKER_AMOUNT=
  111. # Flag indicating whether to enable autoscaling of Celery workers.
  112. #
  113. # Autoscaling is useful when tasks are CPU intensive and can be dynamically
  114. # allocated and deallocated based on the workload.
  115. #
  116. # When autoscaling is enabled, the maximum and minimum number of workers can
  117. # be specified. The autoscaling algorithm will dynamically adjust the number
  118. # of workers within the specified range.
  119. #
  120. # Default is false (i.e., autoscaling is disabled).
  121. #
  122. # Example:
  123. # CELERY_AUTO_SCALE=true
  124. CELERY_AUTO_SCALE=false
  125. # The maximum number of Celery workers that can be autoscaled.
  126. # This is optional and only used when autoscaling is enabled.
  127. # Default is not set.
  128. CELERY_MAX_WORKERS=
  129. # The minimum number of Celery workers that can be autoscaled.
  130. # This is optional and only used when autoscaling is enabled.
  131. # Default is not set.
  132. CELERY_MIN_WORKERS=
  133. # API Tool configuration
  134. API_TOOL_DEFAULT_CONNECT_TIMEOUT=10
  135. API_TOOL_DEFAULT_READ_TIMEOUT=60
  136. # ------------------------------
  137. # Database Configuration
  138. # The database uses PostgreSQL. Please use the public schema.
  139. # It is consistent with the configuration in the 'db' service below.
  140. # ------------------------------
  141. DB_USERNAME=postgres
  142. DB_PASSWORD=difyai123456
  143. DB_HOST=db
  144. DB_PORT=5432
  145. DB_DATABASE=dify
  146. # The size of the database connection pool.
  147. # The default is 30 connections, which can be appropriately increased.
  148. SQLALCHEMY_POOL_SIZE=30
  149. # Database connection pool recycling time, the default is 3600 seconds.
  150. SQLALCHEMY_POOL_RECYCLE=3600
  151. # Whether to print SQL, default is false.
  152. SQLALCHEMY_ECHO=false
  153. # Maximum number of connections to the database
  154. # Default is 100
  155. #
  156. # Reference: https://www.postgresql.org/docs/current/runtime-config-connection.html#GUC-MAX-CONNECTIONS
  157. POSTGRES_MAX_CONNECTIONS=100
  158. # Sets the amount of shared memory used for postgres's shared buffers.
  159. # Default is 128MB
  160. # Recommended value: 25% of available memory
  161. # Reference: https://www.postgresql.org/docs/current/runtime-config-resource.html#GUC-SHARED-BUFFERS
  162. POSTGRES_SHARED_BUFFERS=128MB
  163. # Sets the amount of memory used by each database worker for working space.
  164. # Default is 4MB
  165. #
  166. # Reference: https://www.postgresql.org/docs/current/runtime-config-resource.html#GUC-WORK-MEM
  167. POSTGRES_WORK_MEM=4MB
  168. # Sets the amount of memory reserved for maintenance activities.
  169. # Default is 64MB
  170. #
  171. # Reference: https://www.postgresql.org/docs/current/runtime-config-resource.html#GUC-MAINTENANCE-WORK-MEM
  172. POSTGRES_MAINTENANCE_WORK_MEM=64MB
  173. # Sets the planner's assumption about the effective cache size.
  174. # Default is 4096MB
  175. #
  176. # Reference: https://www.postgresql.org/docs/current/runtime-config-query.html#GUC-EFFECTIVE-CACHE-SIZE
  177. POSTGRES_EFFECTIVE_CACHE_SIZE=4096MB
  178. # ------------------------------
  179. # Redis Configuration
  180. # This Redis configuration is used for caching and for pub/sub during conversation.
  181. # ------------------------------
  182. REDIS_HOST=redis
  183. REDIS_PORT=6379
  184. REDIS_USERNAME=
  185. REDIS_PASSWORD=difyai123456
  186. REDIS_USE_SSL=false
  187. # Whether to use Redis Sentinel mode.
  188. # If set to true, the application will automatically discover and connect to the master node through Sentinel.
  189. REDIS_USE_SENTINEL=false
  190. # List of Redis Sentinel nodes. If Sentinel mode is enabled, provide at least one Sentinel IP and port.
  191. # Format: `<sentinel1_ip>:<sentinel1_port>,<sentinel2_ip>:<sentinel2_port>,<sentinel3_ip>:<sentinel3_port>`
  192. REDIS_SENTINELS=
  193. REDIS_SENTINEL_SERVICE_NAME=
  194. REDIS_SENTINEL_USERNAME=
  195. REDIS_SENTINEL_PASSWORD=
  196. REDIS_SENTINEL_SOCKET_TIMEOUT=0.1
  197. # ------------------------------
  198. # Celery Configuration
  199. # ------------------------------
  200. # Use redis as the broker, and redis db 1 for celery broker.
  201. # Format as follows: `redis://<redis_username>:<redis_password>@<redis_host>:<redis_port>/<redis_database>`
  202. # Example: redis://:difyai123456@redis:6379/1
  203. # If use Redis Sentinel, format as follows: `sentinel://<sentinel_username>:<sentinel_password>@<sentinel_host>:<sentinel_port>/<redis_database>`
  204. # Example: sentinel://localhost:26379/1;sentinel://localhost:26380/1;sentinel://localhost:26381/1
  205. CELERY_BROKER_URL=redis://:difyai123456@redis:6379/1
  206. BROKER_USE_SSL=false
  207. # If you are using Redis Sentinel for high availability, configure the following settings.
  208. CELERY_USE_SENTINEL=false
  209. CELERY_SENTINEL_MASTER_NAME=
  210. CELERY_SENTINEL_SOCKET_TIMEOUT=0.1
  211. # ------------------------------
  212. # CORS Configuration
  213. # Used to set the front-end cross-domain access policy.
  214. # ------------------------------
  215. # Specifies the allowed origins for cross-origin requests to the Web API,
  216. # e.g. https://dify.app or * for all origins.
  217. WEB_API_CORS_ALLOW_ORIGINS=*
  218. # Specifies the allowed origins for cross-origin requests to the console API,
  219. # e.g. https://cloud.dify.ai or * for all origins.
  220. CONSOLE_CORS_ALLOW_ORIGINS=*
  221. # ------------------------------
  222. # File Storage Configuration
  223. # ------------------------------
  224. # The type of storage to use for storing user files.
  225. # Supported values are `local` , `s3` , `azure-blob` , `google-storage`, `tencent-cos`, `huawei-obs`, `volcengine-tos`, `baidu-obs`, `supabase`
  226. # Default: `local`
  227. STORAGE_TYPE=local
  228. STORAGE_LOCAL_PATH=storage
  229. # S3 Configuration
  230. # Whether to use AWS managed IAM roles for authenticating with the S3 service.
  231. # If set to false, the access key and secret key must be provided.
  232. S3_USE_AWS_MANAGED_IAM=false
  233. # The endpoint of the S3 service.
  234. S3_ENDPOINT=
  235. # The region of the S3 service.
  236. S3_REGION=us-east-1
  237. # The name of the S3 bucket to use for storing files.
  238. S3_BUCKET_NAME=difyai
  239. # The access key to use for authenticating with the S3 service.
  240. S3_ACCESS_KEY=
  241. # The secret key to use for authenticating with the S3 service.
  242. S3_SECRET_KEY=
  243. # Azure Blob Configuration
  244. # The name of the Azure Blob Storage account to use for storing files.
  245. AZURE_BLOB_ACCOUNT_NAME=difyai
  246. # The access key to use for authenticating with the Azure Blob Storage account.
  247. AZURE_BLOB_ACCOUNT_KEY=difyai
  248. # The name of the Azure Blob Storage container to use for storing files.
  249. AZURE_BLOB_CONTAINER_NAME=difyai-container
  250. # The URL of the Azure Blob Storage account.
  251. AZURE_BLOB_ACCOUNT_URL=https://<your_account_name>.blob.core.windows.net
  252. # Google Storage Configuration
  253. # The name of the Google Storage bucket to use for storing files.
  254. GOOGLE_STORAGE_BUCKET_NAME=your-bucket-name
  255. # The service account JSON key to use for authenticating with the Google Storage service.
  256. GOOGLE_STORAGE_SERVICE_ACCOUNT_JSON_BASE64=your-google-service-account-json-base64-string
  257. # The Alibaba Cloud OSS configurations,
  258. # only available when STORAGE_TYPE is `aliyun-oss`
  259. ALIYUN_OSS_BUCKET_NAME=your-bucket-name
  260. ALIYUN_OSS_ACCESS_KEY=your-access-key
  261. ALIYUN_OSS_SECRET_KEY=your-secret-key
  262. ALIYUN_OSS_ENDPOINT=https://oss-ap-southeast-1-internal.aliyuncs.com
  263. ALIYUN_OSS_REGION=ap-southeast-1
  264. ALIYUN_OSS_AUTH_VERSION=v4
  265. # Don't start with '/'. OSS doesn't support leading slash in object names.
  266. ALIYUN_OSS_PATH=your-path
  267. # Tencent COS Configuration
  268. # The name of the Tencent COS bucket to use for storing files.
  269. TENCENT_COS_BUCKET_NAME=your-bucket-name
  270. # The secret key to use for authenticating with the Tencent COS service.
  271. TENCENT_COS_SECRET_KEY=your-secret-key
  272. # The secret id to use for authenticating with the Tencent COS service.
  273. TENCENT_COS_SECRET_ID=your-secret-id
  274. # The region of the Tencent COS service.
  275. TENCENT_COS_REGION=your-region
  276. # The scheme of the Tencent COS service.
  277. TENCENT_COS_SCHEME=your-scheme
  278. # Huawei OBS Configuration
  279. # The name of the Huawei OBS bucket to use for storing files.
  280. HUAWEI_OBS_BUCKET_NAME=your-bucket-name
  281. # The secret key to use for authenticating with the Huawei OBS service.
  282. HUAWEI_OBS_SECRET_KEY=your-secret-key
  283. # The access key to use for authenticating with the Huawei OBS service.
  284. HUAWEI_OBS_ACCESS_KEY=your-access-key
  285. # The server url of the HUAWEI OBS service.
  286. HUAWEI_OBS_SERVER=your-server-url
  287. # Volcengine TOS Configuration
  288. # The name of the Volcengine TOS bucket to use for storing files.
  289. VOLCENGINE_TOS_BUCKET_NAME=your-bucket-name
  290. # The secret key to use for authenticating with the Volcengine TOS service.
  291. VOLCENGINE_TOS_SECRET_KEY=your-secret-key
  292. # The access key to use for authenticating with the Volcengine TOS service.
  293. VOLCENGINE_TOS_ACCESS_KEY=your-access-key
  294. # The endpoint of the Volcengine TOS service.
  295. VOLCENGINE_TOS_ENDPOINT=your-server-url
  296. # The region of the Volcengine TOS service.
  297. VOLCENGINE_TOS_REGION=your-region
  298. # Baidu OBS Storage Configuration
  299. # The name of the Baidu OBS bucket to use for storing files.
  300. BAIDU_OBS_BUCKET_NAME=your-bucket-name
  301. # The secret key to use for authenticating with the Baidu OBS service.
  302. BAIDU_OBS_SECRET_KEY=your-secret-key
  303. # The access key to use for authenticating with the Baidu OBS service.
  304. BAIDU_OBS_ACCESS_KEY=your-access-key
  305. # The endpoint of the Baidu OBS service.
  306. BAIDU_OBS_ENDPOINT=your-server-url
  307. # Supabase Storage Configuration
  308. # The name of the Supabase bucket to use for storing files.
  309. SUPABASE_BUCKET_NAME=your-bucket-name
  310. # The api key to use for authenticating with the Supabase service.
  311. SUPABASE_API_KEY=your-access-key
  312. # The project endpoint url of the Supabase service.
  313. SUPABASE_URL=your-server-url
  314. # ------------------------------
  315. # Vector Database Configuration
  316. # ------------------------------
  317. # The type of vector store to use.
  318. # Supported values are `weaviate`, `qdrant`, `milvus`, `myscale`, `relyt`, `pgvector`, `pgvecto-rs`, `chroma`, `opensearch`, `tidb_vector`, `oracle`, `tencent`, `elasticsearch`, `analyticdb`, `couchbase`, `vikingdb`, `oceanbase`.
  319. VECTOR_STORE=weaviate
  320. # The Weaviate endpoint URL. Only available when VECTOR_STORE is `weaviate`.
  321. WEAVIATE_ENDPOINT=http://weaviate:8080
  322. # The Weaviate API key.
  323. WEAVIATE_API_KEY=WVF5YThaHlkYwhGUSmCRgsX3tD5ngdN8pkih
  324. # The Qdrant endpoint URL. Only available when VECTOR_STORE is `qdrant`.
  325. QDRANT_URL=http://qdrant:6333
  326. # The Qdrant API key.
  327. QDRANT_API_KEY=difyai123456
  328. # The Qdrant client timeout setting.
  329. QDRANT_CLIENT_TIMEOUT=20
  330. # The Qdrant client enable gRPC mode.
  331. QDRANT_GRPC_ENABLED=false
  332. # The Qdrant server gRPC mode PORT.
  333. QDRANT_GRPC_PORT=6334
  334. # Milvus configuration Only available when VECTOR_STORE is `milvus`.
  335. # The milvus uri.
  336. MILVUS_URI=http://127.0.0.1:19530
  337. # The milvus token.
  338. MILVUS_TOKEN=
  339. # The milvus username.
  340. MILVUS_USER=root
  341. # The milvus password.
  342. MILVUS_PASSWORD=Milvus
  343. # MyScale configuration, only available when VECTOR_STORE is `myscale`
  344. # For multi-language support, please set MYSCALE_FTS_PARAMS with referring to:
  345. # https://myscale.com/docs/en/text-search/#understanding-fts-index-parameters
  346. MYSCALE_HOST=myscale
  347. MYSCALE_PORT=8123
  348. MYSCALE_USER=default
  349. MYSCALE_PASSWORD=
  350. MYSCALE_DATABASE=dify
  351. MYSCALE_FTS_PARAMS=
  352. # Couchbase configurations, only available when VECTOR_STORE is `couchbase`
  353. # The connection string must include hostname defined in the docker-compose file (couchbase-server in this case)
  354. COUCHBASE_CONNECTION_STRING=couchbase://couchbase-server
  355. COUCHBASE_USER=Administrator
  356. COUCHBASE_PASSWORD=password
  357. COUCHBASE_BUCKET_NAME=Embeddings
  358. COUCHBASE_SCOPE_NAME=_default
  359. # pgvector configurations, only available when VECTOR_STORE is `pgvector`
  360. PGVECTOR_HOST=pgvector
  361. PGVECTOR_PORT=5432
  362. PGVECTOR_USER=postgres
  363. PGVECTOR_PASSWORD=difyai123456
  364. PGVECTOR_DATABASE=dify
  365. PGVECTOR_MIN_CONNECTION=1
  366. PGVECTOR_MAX_CONNECTION=5
  367. # pgvecto-rs configurations, only available when VECTOR_STORE is `pgvecto-rs`
  368. PGVECTO_RS_HOST=pgvecto-rs
  369. PGVECTO_RS_PORT=5432
  370. PGVECTO_RS_USER=postgres
  371. PGVECTO_RS_PASSWORD=difyai123456
  372. PGVECTO_RS_DATABASE=dify
  373. # analyticdb configurations, only available when VECTOR_STORE is `analyticdb`
  374. ANALYTICDB_KEY_ID=your-ak
  375. ANALYTICDB_KEY_SECRET=your-sk
  376. ANALYTICDB_REGION_ID=cn-hangzhou
  377. ANALYTICDB_INSTANCE_ID=gp-ab123456
  378. ANALYTICDB_ACCOUNT=testaccount
  379. ANALYTICDB_PASSWORD=testpassword
  380. ANALYTICDB_NAMESPACE=dify
  381. ANALYTICDB_NAMESPACE_PASSWORD=difypassword
  382. # TiDB vector configurations, only available when VECTOR_STORE is `tidb`
  383. TIDB_VECTOR_HOST=tidb
  384. TIDB_VECTOR_PORT=4000
  385. TIDB_VECTOR_USER=xxx.root
  386. TIDB_VECTOR_PASSWORD=xxxxxx
  387. TIDB_VECTOR_DATABASE=dify
  388. # Tidb on qdrant configuration, only available when VECTOR_STORE is `tidb_on_qdrant`
  389. TIDB_ON_QDRANT_URL=http://127.0.0.1
  390. TIDB_ON_QDRANT_API_KEY=dify
  391. TIDB_ON_QDRANT_CLIENT_TIMEOUT=20
  392. TIDB_ON_QDRANT_GRPC_ENABLED=false
  393. TIDB_ON_QDRANT_GRPC_PORT=6334
  394. TIDB_PUBLIC_KEY=dify
  395. TIDB_PRIVATE_KEY=dify
  396. TIDB_API_URL=http://127.0.0.1
  397. TIDB_IAM_API_URL=http://127.0.0.1
  398. TIDB_REGION=regions/aws-us-east-1
  399. TIDB_PROJECT_ID=dify
  400. TIDB_SPEND_LIMIT=100
  401. # Chroma configuration, only available when VECTOR_STORE is `chroma`
  402. CHROMA_HOST=127.0.0.1
  403. CHROMA_PORT=8000
  404. CHROMA_TENANT=default_tenant
  405. CHROMA_DATABASE=default_database
  406. CHROMA_AUTH_PROVIDER=chromadb.auth.token_authn.TokenAuthClientProvider
  407. CHROMA_AUTH_CREDENTIALS=xxxxxx
  408. # Oracle configuration, only available when VECTOR_STORE is `oracle`
  409. ORACLE_HOST=oracle
  410. ORACLE_PORT=1521
  411. ORACLE_USER=dify
  412. ORACLE_PASSWORD=dify
  413. ORACLE_DATABASE=FREEPDB1
  414. # relyt configurations, only available when VECTOR_STORE is `relyt`
  415. RELYT_HOST=db
  416. RELYT_PORT=5432
  417. RELYT_USER=postgres
  418. RELYT_PASSWORD=difyai123456
  419. RELYT_DATABASE=postgres
  420. # open search configuration, only available when VECTOR_STORE is `opensearch`
  421. OPENSEARCH_HOST=opensearch
  422. OPENSEARCH_PORT=9200
  423. OPENSEARCH_USER=admin
  424. OPENSEARCH_PASSWORD=admin
  425. OPENSEARCH_SECURE=true
  426. # tencent vector configurations, only available when VECTOR_STORE is `tencent`
  427. TENCENT_VECTOR_DB_URL=http://127.0.0.1
  428. TENCENT_VECTOR_DB_API_KEY=dify
  429. TENCENT_VECTOR_DB_TIMEOUT=30
  430. TENCENT_VECTOR_DB_USERNAME=dify
  431. TENCENT_VECTOR_DB_DATABASE=dify
  432. TENCENT_VECTOR_DB_SHARD=1
  433. TENCENT_VECTOR_DB_REPLICAS=2
  434. # ElasticSearch configuration, only available when VECTOR_STORE is `elasticsearch`
  435. ELASTICSEARCH_HOST=0.0.0.0
  436. ELASTICSEARCH_PORT=9200
  437. ELASTICSEARCH_USERNAME=elastic
  438. ELASTICSEARCH_PASSWORD=elastic
  439. # baidu vector configurations, only available when VECTOR_STORE is `baidu`
  440. BAIDU_VECTOR_DB_ENDPOINT=http://127.0.0.1:5287
  441. BAIDU_VECTOR_DB_CONNECTION_TIMEOUT_MS=30000
  442. BAIDU_VECTOR_DB_ACCOUNT=root
  443. BAIDU_VECTOR_DB_API_KEY=dify
  444. BAIDU_VECTOR_DB_DATABASE=dify
  445. BAIDU_VECTOR_DB_SHARD=1
  446. BAIDU_VECTOR_DB_REPLICAS=3
  447. # VikingDB configurations, only available when VECTOR_STORE is `vikingdb`
  448. VIKINGDB_ACCESS_KEY=your-ak
  449. VIKINGDB_SECRET_KEY=your-sk
  450. VIKINGDB_REGION=cn-shanghai
  451. VIKINGDB_HOST=api-vikingdb.xxx.volces.com
  452. VIKINGDB_SCHEMA=http
  453. VIKINGDB_CONNECTION_TIMEOUT=30
  454. VIKINGDB_SOCKET_TIMEOUT=30
  455. # Lindorm configuration, only available when VECTOR_STORE is `lindorm`
  456. LINDORM_URL=http://ld-***************-proxy-search-pub.lindorm.aliyuncs.com:30070
  457. LINDORM_USERNAME=username
  458. LINDORM_PASSWORD=password
  459. # OceanBase Vector configuration, only available when VECTOR_STORE is `oceanbase`
  460. OCEANBASE_VECTOR_HOST=oceanbase
  461. OCEANBASE_VECTOR_PORT=2881
  462. OCEANBASE_VECTOR_USER=root@test
  463. OCEANBASE_VECTOR_PASSWORD=difyai123456
  464. OCEANBASE_VECTOR_DATABASE=test
  465. OCEANBASE_MEMORY_LIMIT=6G
  466. # ------------------------------
  467. # Knowledge Configuration
  468. # ------------------------------
  469. # Upload file size limit, default 15M.
  470. UPLOAD_FILE_SIZE_LIMIT=15
  471. # The maximum number of files that can be uploaded at a time, default 5.
  472. UPLOAD_FILE_BATCH_LIMIT=5
  473. # ETl type, support: `dify`, `Unstructured`
  474. # `dify` Dify's proprietary file extraction scheme
  475. # `Unstructured` Unstructured.io file extraction scheme
  476. ETL_TYPE=dify
  477. # Unstructured API path, needs to be configured when ETL_TYPE is Unstructured.
  478. # For example: http://unstructured:8000/general/v0/general
  479. UNSTRUCTURED_API_URL=
  480. # ------------------------------
  481. # Model Configuration
  482. # ------------------------------
  483. # The maximum number of tokens allowed for prompt generation.
  484. # This setting controls the upper limit of tokens that can be used by the LLM
  485. # when generating a prompt in the prompt generation tool.
  486. # Default: 512 tokens.
  487. PROMPT_GENERATION_MAX_TOKENS=512
  488. # The maximum number of tokens allowed for code generation.
  489. # This setting controls the upper limit of tokens that can be used by the LLM
  490. # when generating code in the code generation tool.
  491. # Default: 1024 tokens.
  492. CODE_GENERATION_MAX_TOKENS=1024
  493. # ------------------------------
  494. # Multi-modal Configuration
  495. # ------------------------------
  496. # The format of the image/video sent when the multi-modal model is input,
  497. # the default is base64, optional url.
  498. # The delay of the call in url mode will be lower than that in base64 mode.
  499. # It is generally recommended to use the more compatible base64 mode.
  500. # If configured as url, you need to configure FILES_URL as an externally accessible address so that the multi-modal model can access the image/video.
  501. MULTIMODAL_SEND_IMAGE_FORMAT=base64
  502. MULTIMODAL_SEND_VIDEO_FORMAT=base64
  503. # Upload image file size limit, default 10M.
  504. UPLOAD_IMAGE_FILE_SIZE_LIMIT=10
  505. # Upload video file size limit, default 100M.
  506. UPLOAD_VIDEO_FILE_SIZE_LIMIT=100
  507. # Upload audio file size limit, default 50M.
  508. UPLOAD_AUDIO_FILE_SIZE_LIMIT=50
  509. # ------------------------------
  510. # Sentry Configuration
  511. # Used for application monitoring and error log tracking.
  512. # ------------------------------
  513. # API Service Sentry DSN address, default is empty, when empty,
  514. # all monitoring information is not reported to Sentry.
  515. # If not set, Sentry error reporting will be disabled.
  516. API_SENTRY_DSN=
  517. # API Service The reporting ratio of Sentry events, if it is 0.01, it is 1%.
  518. API_SENTRY_TRACES_SAMPLE_RATE=1.0
  519. # API Service The reporting ratio of Sentry profiles, if it is 0.01, it is 1%.
  520. API_SENTRY_PROFILES_SAMPLE_RATE=1.0
  521. # Web Service Sentry DSN address, default is empty, when empty,
  522. # all monitoring information is not reported to Sentry.
  523. # If not set, Sentry error reporting will be disabled.
  524. WEB_SENTRY_DSN=
  525. # ------------------------------
  526. # Notion Integration Configuration
  527. # Variables can be obtained by applying for Notion integration: https://www.notion.so/my-integrations
  528. # ------------------------------
  529. # Configure as "public" or "internal".
  530. # Since Notion's OAuth redirect URL only supports HTTPS,
  531. # if deploying locally, please use Notion's internal integration.
  532. NOTION_INTEGRATION_TYPE=public
  533. # Notion OAuth client secret (used for public integration type)
  534. NOTION_CLIENT_SECRET=
  535. # Notion OAuth client id (used for public integration type)
  536. NOTION_CLIENT_ID=
  537. # Notion internal integration secret.
  538. # If the value of NOTION_INTEGRATION_TYPE is "internal",
  539. # you need to configure this variable.
  540. NOTION_INTERNAL_SECRET=
  541. # ------------------------------
  542. # Mail related configuration
  543. # ------------------------------
  544. # Mail type, support: resend, smtp
  545. MAIL_TYPE=resend
  546. # Default send from email address, if not specified
  547. MAIL_DEFAULT_SEND_FROM=
  548. # API-Key for the Resend email provider, used when MAIL_TYPE is `resend`.
  549. RESEND_API_KEY=your-resend-api-key
  550. # SMTP server configuration, used when MAIL_TYPE is `smtp`
  551. SMTP_SERVER=
  552. SMTP_PORT=465
  553. SMTP_USERNAME=
  554. SMTP_PASSWORD=
  555. SMTP_USE_TLS=true
  556. SMTP_OPPORTUNISTIC_TLS=false
  557. # ------------------------------
  558. # Others Configuration
  559. # ------------------------------
  560. # Maximum length of segmentation tokens for indexing
  561. INDEXING_MAX_SEGMENTATION_TOKENS_LENGTH=1000
  562. # Member invitation link valid time (hours),
  563. # Default: 72.
  564. INVITE_EXPIRY_HOURS=72
  565. # Reset password token valid time (minutes),
  566. RESET_PASSWORD_TOKEN_EXPIRY_MINUTES=5
  567. # The sandbox service endpoint.
  568. CODE_EXECUTION_ENDPOINT=http://sandbox:8194
  569. CODE_MAX_NUMBER=9223372036854775807
  570. CODE_MIN_NUMBER=-9223372036854775808
  571. CODE_MAX_DEPTH=5
  572. CODE_MAX_PRECISION=20
  573. CODE_MAX_STRING_LENGTH=80000
  574. TEMPLATE_TRANSFORM_MAX_LENGTH=80000
  575. CODE_MAX_STRING_ARRAY_LENGTH=30
  576. CODE_MAX_OBJECT_ARRAY_LENGTH=30
  577. CODE_MAX_NUMBER_ARRAY_LENGTH=1000
  578. # Workflow runtime configuration
  579. WORKFLOW_MAX_EXECUTION_STEPS=500
  580. WORKFLOW_MAX_EXECUTION_TIME=1200
  581. WORKFLOW_CALL_MAX_DEPTH=5
  582. MAX_VARIABLE_SIZE=204800
  583. WORKFLOW_FILE_UPLOAD_LIMIT=10
  584. # HTTP request node in workflow configuration
  585. HTTP_REQUEST_NODE_MAX_BINARY_SIZE=10485760
  586. HTTP_REQUEST_NODE_MAX_TEXT_SIZE=1048576
  587. # SSRF Proxy server HTTP URL
  588. SSRF_PROXY_HTTP_URL=http://ssrf_proxy:3128
  589. # SSRF Proxy server HTTPS URL
  590. SSRF_PROXY_HTTPS_URL=http://ssrf_proxy:3128
  591. # ------------------------------
  592. # Environment Variables for web Service
  593. # ------------------------------
  594. # The timeout for the text generation in millisecond
  595. TEXT_GENERATION_TIMEOUT_MS=60000
  596. # ------------------------------
  597. # Environment Variables for db Service
  598. # ------------------------------
  599. PGUSER=${DB_USERNAME}
  600. # The password for the default postgres user.
  601. POSTGRES_PASSWORD=${DB_PASSWORD}
  602. # The name of the default postgres database.
  603. POSTGRES_DB=${DB_DATABASE}
  604. # postgres data directory
  605. PGDATA=/var/lib/postgresql/data/pgdata
  606. # ------------------------------
  607. # Environment Variables for sandbox Service
  608. # ------------------------------
  609. # The API key for the sandbox service
  610. SANDBOX_API_KEY=dify-sandbox
  611. # The mode in which the Gin framework runs
  612. SANDBOX_GIN_MODE=release
  613. # The timeout for the worker in seconds
  614. SANDBOX_WORKER_TIMEOUT=15
  615. # Enable network for the sandbox service
  616. SANDBOX_ENABLE_NETWORK=true
  617. # HTTP proxy URL for SSRF protection
  618. SANDBOX_HTTP_PROXY=http://ssrf_proxy:3128
  619. # HTTPS proxy URL for SSRF protection
  620. SANDBOX_HTTPS_PROXY=http://ssrf_proxy:3128
  621. # The port on which the sandbox service runs
  622. SANDBOX_PORT=8194
  623. # ------------------------------
  624. # Environment Variables for weaviate Service
  625. # (only used when VECTOR_STORE is weaviate)
  626. # ------------------------------
  627. WEAVIATE_PERSISTENCE_DATA_PATH=/var/lib/weaviate
  628. WEAVIATE_QUERY_DEFAULTS_LIMIT=25
  629. WEAVIATE_AUTHENTICATION_ANONYMOUS_ACCESS_ENABLED=true
  630. WEAVIATE_DEFAULT_VECTORIZER_MODULE=none
  631. WEAVIATE_CLUSTER_HOSTNAME=node1
  632. WEAVIATE_AUTHENTICATION_APIKEY_ENABLED=true
  633. WEAVIATE_AUTHENTICATION_APIKEY_ALLOWED_KEYS=WVF5YThaHlkYwhGUSmCRgsX3tD5ngdN8pkih
  634. WEAVIATE_AUTHENTICATION_APIKEY_USERS=hello@dify.ai
  635. WEAVIATE_AUTHORIZATION_ADMINLIST_ENABLED=true
  636. WEAVIATE_AUTHORIZATION_ADMINLIST_USERS=hello@dify.ai
  637. # ------------------------------
  638. # Environment Variables for Chroma
  639. # (only used when VECTOR_STORE is chroma)
  640. # ------------------------------
  641. # Authentication credentials for Chroma server
  642. CHROMA_SERVER_AUTHN_CREDENTIALS=difyai123456
  643. # Authentication provider for Chroma server
  644. CHROMA_SERVER_AUTHN_PROVIDER=chromadb.auth.token_authn.TokenAuthenticationServerProvider
  645. # Persistence setting for Chroma server
  646. CHROMA_IS_PERSISTENT=TRUE
  647. # ------------------------------
  648. # Environment Variables for Oracle Service
  649. # (only used when VECTOR_STORE is Oracle)
  650. # ------------------------------
  651. ORACLE_PWD=Dify123456
  652. ORACLE_CHARACTERSET=AL32UTF8
  653. # ------------------------------
  654. # Environment Variables for milvus Service
  655. # (only used when VECTOR_STORE is milvus)
  656. # ------------------------------
  657. # ETCD configuration for auto compaction mode
  658. ETCD_AUTO_COMPACTION_MODE=revision
  659. # ETCD configuration for auto compaction retention in terms of number of revisions
  660. ETCD_AUTO_COMPACTION_RETENTION=1000
  661. # ETCD configuration for backend quota in bytes
  662. ETCD_QUOTA_BACKEND_BYTES=4294967296
  663. # ETCD configuration for the number of changes before triggering a snapshot
  664. ETCD_SNAPSHOT_COUNT=50000
  665. # MinIO access key for authentication
  666. MINIO_ACCESS_KEY=minioadmin
  667. # MinIO secret key for authentication
  668. MINIO_SECRET_KEY=minioadmin
  669. # ETCD service endpoints
  670. ETCD_ENDPOINTS=etcd:2379
  671. # MinIO service address
  672. MINIO_ADDRESS=minio:9000
  673. # Enable or disable security authorization
  674. MILVUS_AUTHORIZATION_ENABLED=true
  675. # ------------------------------
  676. # Environment Variables for pgvector / pgvector-rs Service
  677. # (only used when VECTOR_STORE is pgvector / pgvector-rs)
  678. # ------------------------------
  679. PGVECTOR_PGUSER=postgres
  680. # The password for the default postgres user.
  681. PGVECTOR_POSTGRES_PASSWORD=difyai123456
  682. # The name of the default postgres database.
  683. PGVECTOR_POSTGRES_DB=dify
  684. # postgres data directory
  685. PGVECTOR_PGDATA=/var/lib/postgresql/data/pgdata
  686. # ------------------------------
  687. # Environment Variables for opensearch
  688. # (only used when VECTOR_STORE is opensearch)
  689. # ------------------------------
  690. OPENSEARCH_DISCOVERY_TYPE=single-node
  691. OPENSEARCH_BOOTSTRAP_MEMORY_LOCK=true
  692. OPENSEARCH_JAVA_OPTS_MIN=512m
  693. OPENSEARCH_JAVA_OPTS_MAX=1024m
  694. OPENSEARCH_INITIAL_ADMIN_PASSWORD=Qazwsxedc!@#123
  695. OPENSEARCH_MEMLOCK_SOFT=-1
  696. OPENSEARCH_MEMLOCK_HARD=-1
  697. OPENSEARCH_NOFILE_SOFT=65536
  698. OPENSEARCH_NOFILE_HARD=65536
  699. # ------------------------------
  700. # Environment Variables for Nginx reverse proxy
  701. # ------------------------------
  702. NGINX_SERVER_NAME=_
  703. NGINX_HTTPS_ENABLED=false
  704. # HTTP port
  705. NGINX_PORT=80
  706. # SSL settings are only applied when HTTPS_ENABLED is true
  707. NGINX_SSL_PORT=443
  708. # if HTTPS_ENABLED is true, you're required to add your own SSL certificates/keys to the `./nginx/ssl` directory
  709. # and modify the env vars below accordingly.
  710. NGINX_SSL_CERT_FILENAME=dify.crt
  711. NGINX_SSL_CERT_KEY_FILENAME=dify.key
  712. NGINX_SSL_PROTOCOLS=TLSv1.1 TLSv1.2 TLSv1.3
  713. # Nginx performance tuning
  714. NGINX_WORKER_PROCESSES=auto
  715. NGINX_CLIENT_MAX_BODY_SIZE=15M
  716. NGINX_KEEPALIVE_TIMEOUT=65
  717. # Proxy settings
  718. NGINX_PROXY_READ_TIMEOUT=3600s
  719. NGINX_PROXY_SEND_TIMEOUT=3600s
  720. # Set true to accept requests for /.well-known/acme-challenge/
  721. NGINX_ENABLE_CERTBOT_CHALLENGE=false
  722. # ------------------------------
  723. # Certbot Configuration
  724. # ------------------------------
  725. # Email address (required to get certificates from Let's Encrypt)
  726. CERTBOT_EMAIL=your_email@example.com
  727. # Domain name
  728. CERTBOT_DOMAIN=your_domain.com
  729. # certbot command options
  730. # i.e: --force-renewal --dry-run --test-cert --debug
  731. CERTBOT_OPTIONS=
  732. # ------------------------------
  733. # Environment Variables for SSRF Proxy
  734. # ------------------------------
  735. SSRF_HTTP_PORT=3128
  736. SSRF_COREDUMP_DIR=/var/spool/squid
  737. SSRF_REVERSE_PROXY_PORT=8194
  738. SSRF_SANDBOX_HOST=sandbox
  739. # ------------------------------
  740. # docker env var for specifying vector db type at startup
  741. # (based on the vector db type, the corresponding docker
  742. # compose profile will be used)
  743. # if you want to use unstructured, add ',unstructured' to the end
  744. # ------------------------------
  745. COMPOSE_PROFILES=${VECTOR_STORE:-weaviate}
  746. # ------------------------------
  747. # Docker Compose Service Expose Host Port Configurations
  748. # ------------------------------
  749. EXPOSE_NGINX_PORT=80
  750. EXPOSE_NGINX_SSL_PORT=443
  751. # ----------------------------------------------------------------------------
  752. # ModelProvider & Tool Position Configuration
  753. # Used to specify the model providers and tools that can be used in the app.
  754. # ----------------------------------------------------------------------------
  755. # Pin, include, and exclude tools
  756. # Use comma-separated values with no spaces between items.
  757. # Example: POSITION_TOOL_PINS=bing,google
  758. POSITION_TOOL_PINS=
  759. POSITION_TOOL_INCLUDES=
  760. POSITION_TOOL_EXCLUDES=
  761. # Pin, include, and exclude model providers
  762. # Use comma-separated values with no spaces between items.
  763. # Example: POSITION_PROVIDER_PINS=openai,openllm
  764. POSITION_PROVIDER_PINS=
  765. POSITION_PROVIDER_INCLUDES=
  766. POSITION_PROVIDER_EXCLUDES=
  767. # CSP https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP
  768. CSP_WHITELIST=
  769. # Enable or disable create tidb service job
  770. CREATE_TIDB_SERVICE_JOB_ENABLED=false