Hello,
I'm trying to set up OpenID Connect authentication with Ipsilon idp, but no luck so far...
When trying to login, I get the following error:
I found nothing in proxmox logs, and on the ipsilon logs, the only request i got from proxmox is:
"GET /idp/openidc/.well-known/openid-configuration HTTP/1.1"
So I'm assuming something in this response is making proxmox unhappy.
Do you have any idea on what's missing/incorrect in my configuration?
my domains.cfg:
And the json returned by https://id.int.drkn.ninja/idp/openidc/.well-known/openid-configuration (this is an internal domain)
I'm trying to set up OpenID Connect authentication with Ipsilon idp, but no luck so far...
When trying to login, I get the following error:
Code:
OpenID redirect failed.
Failed to parse server response (500)
I found nothing in proxmox logs, and on the ipsilon logs, the only request i got from proxmox is:
"GET /idp/openidc/.well-known/openid-configuration HTTP/1.1"
So I'm assuming something in this response is making proxmox unhappy.
Do you have any idea on what's missing/incorrect in my configuration?
my domains.cfg:
Code:
openid: ipsilon
client-id redacted
issuer-url https://id.int.drkn.ninja/idp/openidc
client-key redacted
autocreate 1
default 0
username-claim username
And the json returned by https://id.int.drkn.ninja/idp/openidc/.well-known/openid-configuration (this is an internal domain)
JSON:
{
"issuer": "https://id.int.drkn.ninja/idp/openidc/",
"authorization_endpoint": "https://id.int.drkn.ninja/idp/openidc/Authorization",
"token_endpoint": "https://id.int.drkn.ninja/idp/openidc/Token",
"userinfo_endpoint": "https://id.int.drkn.ninja/idp/openidc/UserInfo",
"jwks_uri": "https://id.int.drkn.ninja/idp/openidc/Jwks",
"scopes_supported": [
"openid",
"profile",
"email",
"address",
"phone"
],
"response_types_supported": [
"code",
"id_token",
"token",
"token id_token"
],
"response_modes_supported": [
"query",
"fragment",
"form_post",
"none"
],
"grant_types_supported": [
"authorization_code",
"implicit",
"refresh_token"
],
"acr_values_supported": [
"0"
],
"subject_types_supported": [
"pairwise",
"public"
],
"id_token_signing_alg_values_supported": [
"RS256"
],
"id_token_encryption_alg_values_supported": [],
"id_token_encryption_enc_values_supported": [],
"userinfo_signing_alg_values_supported": [
"RS256"
],
"userinfo_encryption_alg_values_supported": [],
"userinfo_encryption_enc_values_supported": [],
"request_object_signing_alg_values_supported": [
"HS256",
"HS384",
"HS512",
"RS256",
"RS384",
"RS512",
"ES256",
"ES384",
"ES512",
"PS256",
"PS384",
"PS512",
"EdDSA",
"ES256K",
"none"
],
"request_object_encryption_alg_values_supported": [],
"request_object_encryption_enc_values_supported": [],
"token_endpoint_auth_methods_supported": [
"client_secret_basic",
"client_secret_post"
],
"token_endpoint_auth_signing_alg_values_supported": [
"RS256"
],
"display_values_supported": [
"page",
"popup"
],
"claim_types_supported": [
"normal"
],
"claims_supported": [
"sub",
"name",
"given_name",
"family_name",
"middle_name",
"nickname",
"preferred_username",
"profile",
"picture",
"website",
"email",
"email_verified",
"gender",
"birthdate",
"zoneinfo",
"locale",
"phone_number",
"phone_number_verified",
"address",
"updated_at"
],
"service_documentation": "https://ipsilonproject.org/doc/openidc/",
"ui_locales_supported": [
"en"
],
"claims_parameter_supported": true,
"request_parameter_supported": true,
"request_uri_parameter_supported": true,
"require_request_uri_registration": false,
"op_policy_uri": "http://www.example.com/",
"op_tos_uri": "http://www.example.com/",
"registration_endpoint": "https://id.int.drkn.ninja/idp/openidc/Registration"
}