mirror of
https://github.com/open-webui/open-webui.git
synced 2026-05-06 02:48:13 -05:00
how to use the nginx proxy_pass the docker webui #2825
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 @honghh2018 on GitHub (Nov 26, 2024).
Hi developer,
i want to proxy the webui in nginx with the nginx configure file lying below:
#user nobody;
worker_processes 1;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
events {
worker_connections 1024;
}
http {
}
}
But the static file can not be found, 404 error
how to fix this error in proxy, any advice would be appreciated
Best,
hanhuihong