set up jwt for identity

This commit is contained in:
2024-11-25 00:32:05 +01:00
parent 2e8ea4c6a7
commit cb8875a754
5 changed files with 27 additions and 4 deletions

View File

@@ -19,6 +19,11 @@
"name": "spring.application.build.os.version",
"type": "java.lang.String",
"description": "Application build os version."
},
{
"name": "jwt.public-key",
"type": "java.lang.String",
"description": "Jwt public key file."
}
]
}

View File

@@ -10,6 +10,9 @@ spring:
name: "%APP_BUILD_OS_NAME%"
version: "%APP_BUILD_OS_VERSION%"
jwt:
public-key: cert/public_key.pem
---
###############################
### Development environment ###