From 059e141daa98a1645a809fa62aaa72d2dc2d9fa8 Mon Sep 17 00:00:00 2001 From: Yury Kossakovsky Date: Fri, 27 Feb 2026 17:27:45 -0700 Subject: [PATCH] fix(ragflow): correct nginx config and backend port (#41) mount nginx config to conf.d/default.conf instead of sites-available/default, and set SVR_HTTP_PORT to 9380 (official default) instead of 80 which conflicts with nginx and causes 502 on api requests --- CHANGELOG.md | 5 +++++ VERSION | 2 +- docker-compose.yml | 4 ++-- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d67e79f..e686c7d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ ## [Unreleased] +## [1.2.8] - 2026-02-27 + +### Fixed +- **Ragflow** - Fix nginx config mount path (`sites-available/default` → `conf.d/default.conf`) to resolve default "Welcome to nginx!" page (#41) + ## [1.2.7] - 2026-02-27 ### Fixed diff --git a/VERSION b/VERSION index c04c650..db6fb4a 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.2.7 +1.2.8 diff --git a/docker-compose.yml b/docker-compose.yml index 6f19d0b..6c48ffe 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1030,10 +1030,10 @@ services: REDIS_HOST: ragflow-redis REDIS_PASSWORD: ${RAGFLOW_REDIS_PASSWORD} REDIS_PORT: 6379 - SVR_HTTP_PORT: 80 + SVR_HTTP_PORT: 9380 volumes: - ragflow_data:/ragflow - - ./ragflow/nginx.conf:/etc/nginx/sites-available/default:ro + - ./ragflow/nginx.conf:/etc/nginx/conf.d/default.conf:ro depends_on: ragflow-elasticsearch: condition: service_healthy