解决open webui 开启联网搜索时,报Network Problem 错误

⬇️原因应该是nginx 超时了;解决方法是nginx配置项增加超时时间;

# 解决 Network Problem 问题        
proxy_read_timeout 600s;
proxy_send_timeout 600s;
#proxy_set_header Connection $connection_upgrade;
proxy_set_header Connection "upgrade";

✔️加了配置后,Network Problem 错误概率小了点;

❗nginx的错误日志



微信扫描下方的二维码阅读本文

相关推荐

暂无评论