2026-03-30 10:08:14 +02:00
|
|
|
spring:
|
|
|
|
|
application:
|
|
|
|
|
name: cameleer-saas
|
|
|
|
|
jpa:
|
|
|
|
|
open-in-view: false
|
|
|
|
|
hibernate:
|
|
|
|
|
ddl-auto: validate
|
|
|
|
|
flyway:
|
|
|
|
|
enabled: true
|
|
|
|
|
locations: classpath:db/migration
|
2026-04-04 15:03:06 +02:00
|
|
|
security:
|
|
|
|
|
oauth2:
|
|
|
|
|
resourceserver:
|
|
|
|
|
jwt:
|
|
|
|
|
issuer-uri: ${LOGTO_ISSUER_URI:}
|
|
|
|
|
jwk-set-uri: ${LOGTO_JWK_SET_URI:}
|
2026-03-30 10:08:14 +02:00
|
|
|
|
|
|
|
|
management:
|
|
|
|
|
endpoints:
|
|
|
|
|
web:
|
|
|
|
|
exposure:
|
|
|
|
|
include: health,info
|
|
|
|
|
endpoint:
|
|
|
|
|
health:
|
|
|
|
|
show-details: when-authorized
|
|
|
|
|
|
|
|
|
|
cameleer:
|
|
|
|
|
jwt:
|
|
|
|
|
expiration: 86400 # 24 hours in seconds
|
2026-04-04 14:48:20 +02:00
|
|
|
private-key-path: ${CAMELEER_JWT_PRIVATE_KEY_PATH:}
|
|
|
|
|
public-key-path: ${CAMELEER_JWT_PUBLIC_KEY_PATH:}
|
2026-04-04 15:03:06 +02:00
|
|
|
identity:
|
|
|
|
|
logto-endpoint: ${LOGTO_ENDPOINT:}
|
|
|
|
|
m2m-client-id: ${LOGTO_M2M_CLIENT_ID:}
|
|
|
|
|
m2m-client-secret: ${LOGTO_M2M_CLIENT_SECRET:}
|