mirror of
https://github.com/open-webui/open-webui.git
synced 2026-07-16 06:03:26 -05:00
[GH-ISSUE #8650] I am trying to launch this behind traefik and the frontend keeps failing #15206
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @bks5881 on GitHub (Jan 17, 2025).
Original GitHub issue: https://github.com/open-webui/open-webui/issues/8650
I know my traefik setting works fine, i have many services which are currently loaded there.
Can you please share how to launch this service, so that when strip prefix for eg with path
/private-chatpath param is used for reverse proxying, the code still works.I already tried VITE_BASE_PATH="/private-chat" ROOT_PATH="/private-chat" OPENAI_API_BASE_URL=https://0.0.0.0:40080/v1 open-webui serve --port 52131 --host 0.0.0.0, the launch works fine, i can open the service with with localhost, but behind the proxy, the path just fails.
and on the browser the console shows the path its using is mydomain.com/_app/immutable/entry/start.BOWKIIxf.js
where as it should try to use mydomain.com/private-chat/ _app/immutable/entry/start.BOWKIIxf.js
Can you please help?