fix: 🐛 fix loading JWKS

Caused failures in validation of JWTs. We have exposed the default
bundled file instead of the correctly loaded one.
pull/1580/head
Dominik Frantisek Bucik 2021-11-05 09:47:49 +01:00
parent 46ab7593ca
commit 371adc13fb
No known key found for this signature in database
GPG Key ID: 25014C8DB2E7E62D
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.3.xsd">
<bean id="defaultKeyStore" class="cz.muni.ics.jose.keystore.JWKSetKeyStore">
<property name="location" value="classpath:keystore.jwks" />
<property name="location" value="${jwk}" />
</bean>
<bean id="defaultsignerService" class="cz.muni.ics.jwt.signer.service.impl.DefaultJWTSigningAndValidationService">