Wrong nginx web root path in container since v0.21 — should be /ragflow/web, not /ragflow/web/dist #14754
Replies: 2 comments
|
@easyfoster163 I think this is a valid observation, but it would be worth confirming whether it's specific to v0.21.1 or only certain image variants. A quick way to verify is to inspect the container: docker run --rm -it infiniflow/ragflow:v0.21.1 sh
ls -la /ragflow/web
ls -la /ragflow/web/distIf root /ragflow/web;instead of: root /ragflow/web/dist;However, I couldn't find any official release note documenting a frontend directory change in v0.21. The current deployment documentation also doesn't mention manually editing the nginx If you've verified this against the official It would also help if you could share:
That would confirm whether this is a documentation issue or an image/config mismatch. If this solves your problem, feel free to mark it as the accepted answer so others can find it easily. |
|
proof from the published manifest of source at tag v0.21.1 agrees main is unchanged why so a blank page has a different cause |
Uh oh!
There was an error while loading. Please reload this page.
Environment:
infiniflow/ragflow:v0.21.1Observation:
/ragflow/web/distdirectory./ragflow/web/.Issue:
ragflow.conf(nginx config) and some docker-compose examples stilluse
root /ragflow/web/dist;Suggested fix:
rootdirective to /ragflow/webAll reactions