Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Optimize configuration files to give users more choices #4524

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update service_conf.yaml.template
  • Loading branch information
xinxingi authored Jan 21, 2025
commit eccedb5609dcc13ba7f70510b65f80c972f865f2
4 changes: 2 additions & 2 deletions docker/service_conf.yaml.template
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
ragflow:
host: ${RAGFLOW_HOST:-0.0.0.0}
http_port: ${SVR_HTTP_PORT:9380}
http_port: '${SVR_HTTP_PORT:-9380}'
mysql:
name: '${MYSQL_DBNAME:-rag_flow}'
user: '${MYSQL_USER:-root}'
password: '${MYSQL_PASSWORD:-infini_rag_flow}'
host: '${MYSQL_HOST:-mysql}'
port: '${MYSQL_PORT:-3306}
port: '${MYSQL_PORT:-3306}'
max_connections: 100
stale_timeout: 30
minio:
Expand Down
Loading