Closed vitaaaaa1 closed 1 month ago
Try using the URL without the /.well-known/openid-configuration
suffix and if that doesn't help, run Warpgate with --debug
and grab the output when trying to log in.
--debug I'm using docker compose to start my application, where should I add the debug parameter
version: '3' services: warpgate: image: ghcr.io/warp-tech/warpgate ports: - 2222:2222 - 8888:8888 - 33306:33306 volumes: - ./data:/data stdin_open: true tty: true
Add the command
like this:
version: '3'
services:
warpgate:
image: ghcr.io/warp-tech/warpgate
ports:
- 2222:2222
- 8888:8888
- 33306:33306
volumes:
- ./data:/data
stdin_open: true
tty: true
command: ['--debug', 'run']
Other programs to configure the oidc will require more parameters than issuer_url Like other parameters, like token_url userdata_url oauth_callback_url Am I missing any parameters, but I don't see any other parameters that need to be configured on the official website
Surely you're getting some output?
Now try doing an OIDC login and see what gets logged
I have a similar issue with version 0.11.0. When I visit /@warpgate/api/sso/providers/custom/start?next=%2F
, I receive the following error messages. I have tried both with and without the trailing slash (/):
Provider discovery error: Validation error: unexpected issuer URI `https://example.site.com` (expected `https://example.site.com/`)
@cosmoswafer what's your SSO configuration like?
Here it is, I have tried both with and without the trailing slash (/)
sso_providers:
- name: custom
label: NextCloud
provider:
type: custom
client_id: xxxxxxxxxx
client_secret: xxxxxxxxxx
issuer_url: https://example.site.com/
scopes: ["email"]
hello everyone,I tried to configure oidc.However, after I clicked on oidc to log in, the browser and the program log did not respond,The status code of the browser console,
Other than that there are no error messages My oidc provider is Authentik And this is my is my program configuration file
These are my oidc provider information
Someone can help me