+API URL: {{ config.public.apiUrl }}
+
+URL API: {{ config.public.apiUrl }}
+Service will be back soon
" + } + } +spec: + ingressClassName: alb + rules: + - host: example.com + http: + paths: + # Redirección HTTP a HTTPS + - path: / + pathType: Prefix + backend: + service: + name: ssl-redirect + port: + name: use-annotation + + # Ruta normal para HTTPS + - path: /app + pathType: Prefix + backend: + service: + name: app-service + port: + number: 80 + + # Modo de mantenimiento para rutas específicas + - path: /admin + pathType: Prefix + backend: + service: + name: maintenance-mode + port: + name: use-annotation +``` + +