# ============================================================================== # TRAEFIK.LOCAL.YML - Configuracion para Desarrollo Local # ============================================================================== # Proposito: Configuracion simplificada para desarrollo local (sin HTTPS) # Mantenido por: DevOps-Agent # Actualizado: 2025-12-18 # ============================================================================== # ------------------------------------------------------------------------------ # CONFIGURACION GLOBAL # ------------------------------------------------------------------------------ global: checkNewVersion: false sendAnonymousUsage: false # ------------------------------------------------------------------------------ # API Y DASHBOARD # ------------------------------------------------------------------------------ api: dashboard: true insecure: true # ------------------------------------------------------------------------------ # ENTRYPOINTS # ------------------------------------------------------------------------------ entryPoints: # HTTP - Puerto 80 (sin redireccion a HTTPS) web: address: ":80" # Metrics metrics: address: ":8082" # ------------------------------------------------------------------------------ # PROVIDERS # ------------------------------------------------------------------------------ providers: # Docker provider docker: endpoint: "unix:///var/run/docker.sock" exposedByDefault: false network: infra_shared watch: true # File provider file: directory: "/etc/traefik/dynamic" watch: true # ------------------------------------------------------------------------------ # LOGGING # ------------------------------------------------------------------------------ log: level: DEBUG format: common accessLog: format: common # ------------------------------------------------------------------------------ # METRICS (Prometheus) # ------------------------------------------------------------------------------ metrics: prometheus: entryPoint: metrics addEntryPointsLabels: true addServicesLabels: true # ------------------------------------------------------------------------------ # HEALTH CHECK # ------------------------------------------------------------------------------ ping: entryPoint: web