Helm template ragflow.yaml: fix nginx-config-volume mountPath according to Dockerfile v0.25.0 (#14361)

### What problem does this PR solve?

Dockerfile v0.25.0 expects nginx conf at path
/etc/nginx/ragflow.conf.python, see
[Dockerfile#L200](ca01c7a745/Dockerfile (L200))
However current helm template mount the conf at path
/etc/nginx/ragflow.conf causing runtime error at startup time.

### Type of change

- [X] Bug Fix (non-breaking change which fixes an issue)

---------

Co-authored-by: Mauro Gattari <mauro.gattari@infn.it>
This commit is contained in:
mginfn
2026-04-27 12:51:55 +02:00
committed by GitHub
parent 0f2778efe7
commit 10e28e5c5f
2 changed files with 3 additions and 3 deletions

View File

@@ -55,8 +55,8 @@ spec:
name: admin
{{- end }}
volumeMounts:
- mountPath: /etc/nginx/conf.d/ragflow.conf
subPath: ragflow.conf
- mountPath: /etc/nginx/conf.d/ragflow.conf.python
subPath: ragflow.conf.python
name: nginx-config-volume
- mountPath: /etc/nginx/proxy.conf
subPath: proxy.conf

View File

@@ -18,7 +18,7 @@ kind: ConfigMap
metadata:
name: nginx-config
data:
ragflow.conf: |
ragflow.conf.python: |
server {
listen 80;
server_name _;