Skip to main content

Auth Management in UI

Configure profile authentication from the management UI based on the security model you need.

Token

  • Generate token in profile settings.
  • Consumer sends Authorization: Bearer <token>.
  • Rotate regularly.

JWT

  • Set algorithm and signing secret or public key.
  • Optionally enforce issuer and audience.
  • Consumer sends JWT in Authorization header.

OIDC

  • Set JWKS URL and optional issuer and audience.
  • Consumer uses access token from identity provider.

mTLS

  • Upload or reference trusted CA material.
  • Gateway validates client certificate during TLS handshake.

None

  • Use only for controlled internal or public scenarios.
  • Add network and method restrictions when possible.