Skip to content

Commit

Permalink
Fix jwt issuer path configuration in Saturn.
Browse files Browse the repository at this point in the history
  • Loading branch information
ewelinagr committed Feb 10, 2025
1 parent 08f6e4b commit f6783ae
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions charts/fairspace/templates/project/configmap-saturn.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ data:
oauth2:
resourceserver:
jwt:
issuer-uri: {{ .Values.external.keycloak.baseUrl }}/realms/fairspace
jwk-set-uri: {{ .Values.external.keycloak.baseUrl }}/realms/fairspace/protocol/openid-connect/certs
issuer-uri: {{ .Values.external.keycloak.baseUrl }}/realms/{{ .Values.external.keycloak.realm }}
jwk-set-uri: {{ .Values.external.keycloak.baseUrl }}/realms/{{ .Values.external.keycloak.realm }}/protocol/openid-connect/certs
servlet:
multipart:
max-file-size: 2GB
Expand Down
2 changes: 1 addition & 1 deletion projects/saturn/src/main/resources/application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ spring:
oauth2:
resourceserver:
jwt:
issuer-uri: ${keycloak.auth-server-url}/realms/fairspace
issuer-uri: ${keycloak.auth-server-url}/realms/${keycloak.realm}
jwk-set-uri: ${spring.security.oauth2.resourceserver.jwt.issuer-uri}/protocol/openid-connect/certs
servlet:
multipart:
Expand Down

0 comments on commit f6783ae

Please sign in to comment.