aboutsummaryrefslogtreecommitdiffstats
path: root/app/src/main/resources/application.yml
blob: c7afccb50bf6a52974999940a2ecc0f7c047e0ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
server:
    port: 9001
    address: 0.0.0.0

spring:
  jackson:
    serialization:
      # needed for serializing objects of type object
      FAIL_ON_EMPTY_BEANS: false
  security:
    oauth2:
      resourceserver:
        jwt:
          jwk-set-uri: ${KEYCLOAK_URL}/auth/realms/${KEYCLOAK_REALM}/protocol/openid-connect/certs #Keycloak Endpoint
  data:
    mongodb:
      database: ${PREFERENCES_DATABASE}
      host: ${PREFERENCES_HOST}
      port: ${PREFERENCES_PORT}
      username: ${PREFERENCES_USERNAME}
      password: ${PREFERENCES_PASSWORD}

preferences:
    realm: ${KEYCLOAK_REALM}
management:
  endpoints:
    web:
      exposure:
        include: "*"
  info:
    build:
      enabled: true
    env:
      enabled: true
    git:
      enabled: true
    java:
      enabled: true