mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-08-14 02:55:54 +08:00
ci: fix config ci and it works (#11807)
Signed-off-by: yihong0618 <zouzou0208@gmail.com>
This commit is contained in:
parent
493834d45d
commit
b5c2785e10
@ -107,6 +107,7 @@ ACCESS_TOKEN_EXPIRE_MINUTES=60
|
|||||||
|
|
||||||
# The maximum number of active requests for the application, where 0 means unlimited, should be a non-negative integer.
|
# The maximum number of active requests for the application, where 0 means unlimited, should be a non-negative integer.
|
||||||
APP_MAX_ACTIVE_REQUESTS=0
|
APP_MAX_ACTIVE_REQUESTS=0
|
||||||
|
APP_MAX_EXECUTION_TIME=1200
|
||||||
|
|
||||||
# ------------------------------
|
# ------------------------------
|
||||||
# Container Startup Related Configuration
|
# Container Startup Related Configuration
|
||||||
@ -606,6 +607,7 @@ UPLOAD_AUDIO_FILE_SIZE_LIMIT=50
|
|||||||
# Sentry Configuration
|
# Sentry Configuration
|
||||||
# Used for application monitoring and error log tracking.
|
# Used for application monitoring and error log tracking.
|
||||||
# ------------------------------
|
# ------------------------------
|
||||||
|
SENTRY_DSN=
|
||||||
|
|
||||||
# API Service Sentry DSN address, default is empty, when empty,
|
# API Service Sentry DSN address, default is empty, when empty,
|
||||||
# all monitoring information is not reported to Sentry.
|
# all monitoring information is not reported to Sentry.
|
||||||
|
@ -18,6 +18,7 @@ x-shared-env: &shared-api-worker-env
|
|||||||
LOG_DATEFORMAT: ${LOG_DATEFORMAT:-"%Y-%m-%d %H:%M:%S"}
|
LOG_DATEFORMAT: ${LOG_DATEFORMAT:-"%Y-%m-%d %H:%M:%S"}
|
||||||
LOG_TZ: ${LOG_TZ:-UTC}
|
LOG_TZ: ${LOG_TZ:-UTC}
|
||||||
DEBUG: ${DEBUG:-false}
|
DEBUG: ${DEBUG:-false}
|
||||||
|
SENTRY_DSN: ${SENTRY_DSN:-}
|
||||||
FLASK_DEBUG: ${FLASK_DEBUG:-false}
|
FLASK_DEBUG: ${FLASK_DEBUG:-false}
|
||||||
SECRET_KEY: ${SECRET_KEY:-sk-9f73s3ljTXVcMT3Blb3ljTqtsKiGHXVcMT3BlbkFJLK7U}
|
SECRET_KEY: ${SECRET_KEY:-sk-9f73s3ljTXVcMT3Blb3ljTqtsKiGHXVcMT3BlbkFJLK7U}
|
||||||
INIT_PASSWORD: ${INIT_PASSWORD:-}
|
INIT_PASSWORD: ${INIT_PASSWORD:-}
|
||||||
@ -28,6 +29,7 @@ x-shared-env: &shared-api-worker-env
|
|||||||
FILES_ACCESS_TIMEOUT: ${FILES_ACCESS_TIMEOUT:-300}
|
FILES_ACCESS_TIMEOUT: ${FILES_ACCESS_TIMEOUT:-300}
|
||||||
ACCESS_TOKEN_EXPIRE_MINUTES: ${ACCESS_TOKEN_EXPIRE_MINUTES:-60}
|
ACCESS_TOKEN_EXPIRE_MINUTES: ${ACCESS_TOKEN_EXPIRE_MINUTES:-60}
|
||||||
APP_MAX_ACTIVE_REQUESTS: ${APP_MAX_ACTIVE_REQUESTS:-0}
|
APP_MAX_ACTIVE_REQUESTS: ${APP_MAX_ACTIVE_REQUESTS:-0}
|
||||||
|
APP_MAX_EXECUTION_TIME: ${APP_MAX_EXECUTION_TIME:-1200}
|
||||||
DIFY_BIND_ADDRESS: ${DIFY_BIND_ADDRESS:-0.0.0.0}
|
DIFY_BIND_ADDRESS: ${DIFY_BIND_ADDRESS:-0.0.0.0}
|
||||||
DIFY_PORT: ${DIFY_PORT:-5001}
|
DIFY_PORT: ${DIFY_PORT:-5001}
|
||||||
SERVER_WORKER_AMOUNT: ${SERVER_WORKER_AMOUNT:-}
|
SERVER_WORKER_AMOUNT: ${SERVER_WORKER_AMOUNT:-}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user