oauth2-proxy

Google Cloud Run 下的 oauth2-proxy 因在 IPV6 上查询 DNS 而无法通过提供商登录
oauth2-proxy

Google Cloud Run 下的 oauth2-proxy 因在 IPV6 上查询 DNS 而无法通过提供商登录

我正在实施oauth-代理(Bitnami 容器)为我公司的后端服务谷歌云运行,具有不同的设置和各种提供商(Azure/Microsoft Entra 和 Google)。针对 Google 提供商执行登录时,出现此错误: error performing request: Post "https://www.googleapis.com/oauth2/v3/token": dial tcp: lookup www.googleapis.com on [::1]:53: read udp [::1]:55482->[::1]:53: read: con...

Admin

oauth2-proxy 和 code-server 的 Nginx 配置
oauth2-proxy

oauth2-proxy 和 code-server 的 Nginx 配置

我正在尝试设置 oauth2-server,以便在到达我的代码服务器之前设置 GitHub 身份验证。我正在使用 Nginx 和 Cert bot 来部署服务器。 这是我在 Nginx 中配置的用于连接 oauth2-proxy 的内容 location / { proxy_pass http://127.0.0.1:4180; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $...

Admin

如何抓取受 OAuth2-proxy 和 Keycloak 保护的 Prometheus
oauth2-proxy

如何抓取受 OAuth2-proxy 和 Keycloak 保护的 Prometheus

我有 2 个 prometheus,都通过 oauth2-proxy 进行前向身份验证,它们在单个 keycloak 中具有相同的客户端凭据。我希望一个 prometheus 联合另一个。这是我在 prometheus.yml 中用于身份验证的配置片段 oauth2: client_id: "oauth-proxy" client_secret: "XXXXXXXXXXXXXXXXXXXXXXXXXXXXX" token_url: "https://keycloak.mydomain.tld/realms/mast...

Admin