标题: !?!?!?!震惊
作者: #我认识不
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/516419
时间: 2025-03-27 13:06:54
摘要:
作者: #我认识不
板块: #开发调优
编号:
516419帖子: https://linux.do/t/topic/516419
时间: 2025-03-27 13:06:54
摘要:
what is wrong?
刷新后再进就好了。
最近我的mac和win都会出现乱码
win是在设置里面
mac这是第一次见
标题: 新发现个图像生成模型,reve1.0,看着挺厉害,有没有佬跟mj等一众比较过。
作者: #gpt
板块: #资源荟萃
编号:
帖子: https://linux.do/t/topic/516423
时间: 2025-03-27 13:09:25
摘要:
作者: #gpt
板块: #资源荟萃
编号:
516423帖子: https://linux.do/t/topic/516423
时间: 2025-03-27 13:09:25
摘要:
如题,下面是生成的图像:
https://preview.reve.art/ 非推广
标题: 乐子神的狗同事简略版
作者: #乐子神
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/516425
时间: 2025-03-27 13:10:18
摘要:
作者: #乐子神
板块: #搞七捻三
编号:
516425帖子: https://linux.do/t/topic/516425
时间: 2025-03-27 13:10:18
摘要:
乐子神的狗同事简略版
标题: 新版 V3 模型的百科知识(MMLU-Pro, GPQA)、数学(MATH-500, AIME 2024)和代码任务(LiveCodeBench)表现均有提升
作者: #变色龙
板块: #前沿快讯
编号:
帖子: https://linux.do/t/topic/516436
时间: 2025-03-27 13:17:22
摘要:
作者: #变色龙
板块: #前沿快讯
编号:
516436帖子: https://linux.do/t/topic/516436
时间: 2025-03-27 13:17:22
摘要:
李开复:DeepSeek免费模式是OpenAI最大的噩梦-36氪
标题: openwebui 云服务配置留档
作者: #蜘蛛抱蛋
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/516439
时间: 2025-03-27 13:18:12
摘要:
作者: #蜘蛛抱蛋
板块: #开发调优
编号:
516439帖子: https://linux.do/t/topic/516439
时间: 2025-03-27 13:18:12
摘要:
nginx.conf:
upstream openwebui_backend {
keepalive 32;
server localhost:4567;
}
server {
listen 80;
listen 443 ssl http2;
server_name mywebsite.com;
if ($scheme = http) {
return 301 https://$host$request_uri;
}
ssl_certificate /etc/nginx/ssl/openwebui.crt;
ssl_certificate_key /etc/nginx/ssl/openwebui.key;
ssl_protocols TLSv1.3 TLSv1.2 TLSv1.1 TLSv1;
ssl_ciphers ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES128-SHA256:!aNULL:!eNULL:!EXPORT:!DSS:!DES:!RC4:!3DES:!MD5:!PSK:!KRB5:!SRP:!CAMELLIA:!SEED;
ssl_prefer_server_ciphers on;
ssl_session_cache shared:SSL:10m;
ssl_session_timeout 10m;
error_page 497 https://$host$request_uri;
location ^~ /api/models {
proxy_pass http://openwebui_backend;
add_header X-Cache $upstream_cache_status;
proxy_ssl_server_name off;
proxy_ssl_name $proxy_host;
proxy_cache_background_update on;
proxy_cache_use_stale updating;
proxy_cache_revalidate on;
proxy_cache_min_uses 1;
proxy_buffering on;
proxy_buffer_size 4k;
proxy_buffers 8 4k;
proxy_busy_buffers_size 8k;
proxy_max_temp_file_size 0;
add_header Cache-Control no-cache;
}
location ^~ / {
proxy_pass http://openwebui_backend;
add_header Strict-Transport-Security "max-age=31536000";
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_read_timeout 60s;
proxy_send_timeout 60s;
proxy_ssl_server_name off;
proxy_ssl_name $proxy_host;
add_header Cache-Control no-cache;
proxy_buffering on;
proxy_buffer_size 16k;
proxy_buffers 8 32k;
proxy_busy_buffers_size 64k;
proxy_max_temp_file_size 0;
}
location ~* \.(jpg|jpeg|png|gif|ico|svg|woff|woff2|ttf|eot)(.*) {
proxy_pass http://openwebui_backend;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Real-IP $remote_addr;
add_header X-Cache $upstream_cache_status;
proxy_ssl_server_name off;
proxy_ssl_name $proxy_host;
proxy_buffering on;
proxy_buffer_size 4k;
proxy_buffers 8 4k;
proxy_busy_buffers_size 8k;
proxy_max_temp_file_size 0;
if ( $uri ~* "\.(gif|png|jpg|css|js|woff|woff2)$" ) {
expires 1m;
}
proxy_ignore_headers Set-Cookie Cache-Control expires;
proxy_cache proxy_cache_panel;
proxy_cache_key $host$uri$is_args$args;
proxy_cache_valid 200 304 301 302 10m;
}
}
docker-compose.yml
services:
open-webui:
container_name: open-webui
image: ghcr.io/open-webui/open-webui:main
ports:
- "4567:8080"
volumes:
- /opt/owui/data:/app/backend/data
- /opt/owui/custom:/app/build/assets/custom
environment:
- DATABASE_URL=postgres://uid:dbpwd@host.docker.internal:5432/openwebuidb
- DATABASE_POOL_SIZE=10
- DATABASE_POOL_MAX_OVERFLOW=20
- ENABLE_OLLAMA_API=false
- AIOHTTP_CLIENT_TIMEOUT_OPENAI_MODEL_LIST=8
- WEBSOCKET_REDIS_URL=redis://:@host.docker.internal:6379/0
extra_hosts:
- host.docker.internal:host-gateway
command:
- /bin/bash
- -c
- |
cp /app/build/assets/custom/fonts/* /app/build/assets/fonts/
cp /app/build/assets/custom/custom.css /app/b
标题: 工行服务小程序领3元立减金(限辽宁除大连)
作者: #池子
板块: #福利羊毛
编号:
帖子: https://linux.do/t/topic/516440
时间: 2025-03-27 13:18:22
摘要:
作者: #池子
板块: #福利羊毛
编号:
516440帖子: https://linux.do/t/topic/516440
时间: 2025-03-27 13:18:22
摘要:
进入小程序—主页中间滚动横幅—找到“登录工行服务小程序领微信立减金”
得3.01-3立减金,速领
标题: 🎂今日生日,尔可安好?
作者: #肚肚打雷
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/516441
时间: 2025-03-27 13:20:23
摘要:
作者: #肚肚打雷
板块: #搞七捻三
编号:
516441帖子: https://linux.do/t/topic/516441
时间: 2025-03-27 13:20:23
摘要:
第一次在L站过生日,希望可以收到大家的祝福。也祝福大家:愈来愈好,成为自己想成为的人;更祝福L站:顺风顺水,做大做强!
标题: 网易云 vip 7 天 * 5
作者: #李大白
板块: #福利羊毛
编号:
帖子: https://linux.do/t/topic/516450
时间: 2025-03-27 13:27:34
摘要:
作者: #李大白
板块: #福利羊毛
编号:
516450帖子: https://linux.do/t/topic/516450
时间: 2025-03-27 13:27:34
摘要:
我的礼品卡
有需要佬友速来
标题: UI生成助手
作者: #blowsnow
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/516452
时间: 2025-03-27 13:28:16
摘要:
作者: #blowsnow
板块: #搞七捻三
编号:
516452帖子: https://linux.do/t/topic/516452
时间: 2025-03-27 13:28:16
摘要:
https://img.eyabc.cn/images/2025/03/27/lyavhu.webp(图片大于 2 MB)
兄弟们,这样的效果怎么样
帮忙提提建议,后面开源
chat.bload.eu.org
AI Chat Application
A chat application powered by AI
标题: 2025327一起学考公吧
作者: #乐子神
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/516453
时间: 2025-03-27 13:28:52
摘要:
作者: #乐子神
板块: #搞七捻三
编号:
516453帖子: https://linux.do/t/topic/516453
时间: 2025-03-27 13:28:52
摘要:
标题: GPT4o生出来离谱的了
作者: #Yuen Sze Hong
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/516457
时间: 2025-03-27 13:31:32
摘要:
作者: #Yuen Sze Hong
板块: #搞七捻三
编号:
516457帖子: https://linux.do/t/topic/516457
时间: 2025-03-27 13:31:32
摘要:
完整记录
ChatGPT
ChatGPT - 哆啦A梦与小丸子
Shared via ChatGPT
标题: 分享一个网易云无损解析
作者: #sooooooooooooooooootheby
板块: #资源荟萃
编号:
帖子: https://linux.do/t/topic/516458
时间: 2025-03-27 13:32:26
摘要:
作者: #sooooooooooooooooootheby
板块: #资源荟萃
编号:
516458帖子: https://linux.do/t/topic/516458
时间: 2025-03-27 13:32:26
摘要:
这是一个网易云无损解析站点, 因为我发现很多解析网站都没有批量下载的功能, 索性我自己写了一个.
标题: 大善人又发福利拉!!! 价值25万刀!!
作者: #small
板块: #搞七捻三
编号:
帖子: https://linux.do/t/topic/516460
时间: 2025-03-27 13:32:55
摘要:
作者: #small
板块: #搞七捻三
编号:
516460帖子: https://linux.do/t/topic/516460
时间: 2025-03-27 13:32:55
摘要:
要求的条件也太简单了!!
不愧是大善人啊
标题: 明日期货全国大赛第一天
作者: #正经人经不起蛊惑
板块: #扬帆起航
编号:
帖子: https://linux.do/t/topic/516461
时间: 2025-03-27 13:33:59
摘要:
作者: #正经人经不起蛊惑
板块: #扬帆起航
编号:
516461帖子: https://linux.do/t/topic/516461
时间: 2025-03-27 13:33:59
摘要:
已经参赛了,名字大圣
标题: 黑马博学谷 -百度地图应用开发
作者: #tomm
板块: #资源荟萃
编号:
帖子: https://linux.do/t/topic/516462
时间: 2025-03-27 13:34:01
摘要:
作者: #tomm
板块: #资源荟萃
编号:
516462帖子: https://linux.do/t/topic/516462
时间: 2025-03-27 13:34:01
摘要:
总计: 📁 11 个文件夹, 📄 116 个文件
📂 黑马博学谷 -百度地图应用开发
├── 📂 1-1 百度地图介绍
│ ├── 🎬 01百度地图课程介绍.mp4 (35.81MB)
│ ├── 🎬 02百度地图相关介绍.mp4 (26.52MB)
│ ├── 🎬 03百度地图发展历史.mp4 (35.60MB)
│ ├── 🎬 04百度地图未来前景.mp4 (14.75MB)
│ ├── 🎬 05百度地图产品介绍.mp4 (19.31MB)
│ ├── 🎬 06百度地图可实现的案例.mp4 (20.78MB)
│ ├── 🎬 07了解百度地图及应用场景.mp4 (85.10MB)
│ └── 🎬 08申请密钥.mp4 (24.74MB)
├── 📂 1-2 JavaScript API使用简介
│ ├── 🎬 01JavaScriptAPI使用入门1_简介.mp4 (77.42MB)
│ ├── 🎬 02JavaScriptAPI使用入门2_helloworld.mp4 (120.20MB)
│ ├── 🎬 03JavaScriptAPI使用入门3_地图示例.mp4 (94.83MB)
│ ├── 🎬 04JavaScriptAPI使用入门4_添加地图控件.mp4 (118.04MB)
│ ├── 🎬 05JavaScriptAPI使用入门5_地图控件示例.mp4 (58.24MB)
│ ├── 🎬 06JavaScriptAPI使用入门6_覆盖物1.mp4 (59.51MB)
│ ├── 🎬 07JavaScriptAPI使用入门7_覆盖物2.mp4 (44.49MB)
│ ├── 🎬 08JavaScriptAPI使用入门8_自定义覆盖物3.mp4 (49.75MB)
│ ├── 🎬 09JavaScriptAPI使用入门9_覆盖物示例.mp4 (87.68MB)
│ ├── 🎬 10JavaScriptAPI使用入门10_信息窗口示例.mp4 (40.25MB)
标题: 有什么比较优雅简单直接的方式使用Jetbrains的远程开发吗?
作者: #gopython3
板块: #开发调优
编号:
帖子: https://linux.do/t/topic/516470
时间: 2025-03-27 13:36:49
摘要:
作者: #gopython3
板块: #开发调优
编号:
516470帖子: https://linux.do/t/topic/516470
时间: 2025-03-27 13:36:49
摘要:
主力开发在Windows, 有台旧笔记本搭了个Linux Server, 用来搞Java开发, 不想在Windows上面搞是因为那个项目环境搭建麻烦, 之前在Linux上面搭建好了开发环境, 不想再折腾一次;
然后使用IDEA的Remote Development用ssh的方式进行远程开发, 但好像经常会出现如下的错误, 出现这个错误的时候鼠标和键盘都无法工作了, 只能按ESC键然后关掉重启, 麻烦的很
想问下有什么别的方法解决这个问题吗