Hi!! We're using ory hydra self hosted with k8s, w...
# ory-selfhosting
a
Hi!! We're using ory hydra self hosted with k8s, we have this config for
Copy code
hydra:
  config:
    urls:
      consent: <https://127.0.0.1:3000/consent>
      error: <https://127.0.0.1:3000/error>
      login: <https://127.0.0.1:3000/login>
      logout: <https://127.0.0.1:3000/logout>
      self:
        issuer: <https://127.0.0.1:5444/>
        public: <https://127.0.0.1:5444/>
and it's working well, but when we try to use the introspect endpoint we have the error:
Copy code
Post \"<https://127.0.0.1:4445/admin/oauth2/introspect>\": dial tcp 127.0.0.1:4445: connect: connection refused
we added as config the
Copy code
self: 
  admin: <https://127.0.0.1:4445/>
but it is not working, what are we missing?