Saltar a contenido

Vista de despliegue

flowchart TB
    Internet((Internet))
    subgraph VPS
      Traefik[Traefik :80/:443]
      subgraph frontend
        Keycloak[Keycloak :8080]
      end
      subgraph data
        Postgres[(PostgreSQL :5432)]
      end
      Keycloak --> Postgres
      Traefik --> Keycloak
    end
    Internet --> Traefik

Reglas

  • únicamente 80 y 443 se publican;
  • 9000 queda interno;
  • 5432 queda interno;
  • Keycloak participa en frontend y data;
  • PostgreSQL participa solo en data.