Structure: - control-plane/: Registries, SIMCO directives, CI/CD templates - projects/: Gamilit, ERP-Suite, Trading-Platform, Betting-Analytics - shared/: Libs catalog, knowledge-base Key features: - Centralized port, domain, database, and service registries - 23 SIMCO directives + 6 fundamental principles - NEXUS agent profiles with delegation rules - Validation scripts for workspace integrity - Dockerfiles for all services - Path aliases for quick reference 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
75 lines
2.3 KiB
YAML
75 lines
2.3 KiB
YAML
# ==============================================================================
|
|
# 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
|