Compare commits

..

28 Commits

Author SHA1 Message Date
eb78df8671 passage siam.nicolasboyer.com 2026-03-03 13:43:20 +01:00
c6087ccc80 rajout du tunnel cloudflare 2026-02-26 10:27:34 +01:00
0eb7671ce9 erreur routing 2026-02-25 09:34:55 +01:00
6115c1a3c1 erreur server.py gradio > fast api 2026-02-25 09:17:06 +01:00
1d5193f946 erreur 2026-02-25 08:22:46 +01:00
eecc7db671 erreurs 2026-02-25 08:16:32 +01:00
e4c437d5c0 erreur 2026-02-24 20:05:36 +01:00
9ac9415599 erreur 2026-02-24 19:27:24 +01:00
a1b72e2d7e erreur 2026-02-24 19:22:53 +01:00
da5fadcae3 erreur 2026-02-24 18:44:23 +01:00
f0730389e0 errreur 2026-02-24 18:09:54 +01:00
2ebb89f113 erreurs 2026-02-24 17:52:46 +01:00
1c151c0e52 plus rapide 2026-02-24 17:35:44 +01:00
c26b2b8dbb plus rapide 2026-02-24 17:34:01 +01:00
3058446b7d erreur 2026-02-24 17:31:26 +01:00
d6e7ccd64d pb port 2026-02-24 17:29:28 +01:00
c1f7054088 probleme dependances 2026-02-24 16:56:27 +01:00
a143e27eea correction bug 2026-02-24 15:33:05 +01:00
05ddb3cac5 readme 2026-02-24 14:46:29 +01:00
f0b1dd07f6 avec nginx 2026-02-24 14:21:03 +01:00
c8ca363996 debut 2026-02-24 14:16:30 +01:00
751794aa0e debut 2026-02-24 13:51:01 +01:00
c6a6f3b22d debut 2026-02-24 13:49:14 +01:00
ad031dee70 debut 2026-02-24 13:46:11 +01:00
966fd7af5a debut 2026-02-24 13:44:44 +01:00
e6ca32c896 debut 2026-02-24 13:41:44 +01:00
7e18397527 debut repo 2026-02-24 13:36:07 +01:00
b2f80c436f version 2026-02-24 13:27:02 +01:00
3 changed files with 23 additions and 2 deletions

0
.env
View File

8
.env.example Normal file
View File

@ -0,0 +1,8 @@
# Clé secrète Open WebUI (générer avec: openssl rand -hex 32)
WEBUI_SECRET_KEY=your_secret_key_here
# IP publique de ta VM Vast.ai (change à chaque nouvelle instance)
WEBUI_URL=http://YOUR_VAST_AI_IP
# Token du tunnel Cloudflare
CF_TUNNEL_TOKEN=your_cloudflare_tunnel_token

View File

@ -16,14 +16,27 @@ services:
condition: service_started condition: service_started
restart: always restart: always
# --- LE TUNNEL HTTPS ---
cloudflared:
image: cloudflare/cloudflared:latest
container_name: studio-cloudflared
command: tunnel --no-autoupdate run --token ${CF_TUNNEL_TOKEN}
environment:
- CF_TUNNEL_TOKEN=${CF_TUNNEL_TOKEN}
networks:
- studio-net
depends_on:
- gateway
restart: always
# --- L'INTERFACE (Open WebUI) --- # --- L'INTERFACE (Open WebUI) ---
open-webui: open-webui:
image: ghcr.io/open-webui/open-webui:main image: ghcr.io/open-webui/open-webui:main
container_name: open-webui container_name: open-webui
environment: environment:
- OLLAMA_BASE_URL=http://ollama:11434 - OLLAMA_BASE_URL=http://ollama:11434
- WEBUI_SECRET_KEY=${WEBUI_SECRET_KEY:-supersecretkey} - WEBUI_SECRET_KEY=${WEBUI_SECRET_KEY}
- WEBUI_URL=http://93.108.34.236 - WEBUI_URL=${WEBUI_URL}
- ENABLE_WEBSOCKETS=True - ENABLE_WEBSOCKETS=True
volumes: volumes:
- webui_data:/app/backend/data - webui_data:/app/backend/data