From 850830a76654aac3ebcb03c0ae4cdede78d0eebc Mon Sep 17 00:00:00 2001 From: josedario87 Date: Sat, 1 Nov 2025 01:35:16 -0600 Subject: [PATCH] Fix: Eliminar variables REVERSE_PROXY del environment MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Remover REVERSE_PROXY y REVERSE_PROXY_TLS_PORT que sobrescribían config.json - MeshCentral ahora usará tlsPort: 443 definido en config.json - Esto permite que el TCP passthrough funcione correctamente --- docker-compose.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 088b42a..f5dbfa6 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -12,8 +12,7 @@ services: - /srv/meshcentral/config:/opt/meshcentral/meshcentral-config environment: - HOSTNAME=${APP_DOMAIN} - - REVERSE_PROXY=traefik - - REVERSE_PROXY_TLS_PORT=443 + # REVERSE_PROXY removido - usamos config.json para configuración de puertos - IFRAME=false - ALLOWLOGINTOKEN=true - LOCALSESSIONRECORDING=false