-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrifles-service.yml
More file actions
33 lines (31 loc) · 812 Bytes
/
rifles-service.yml
File metadata and controls
33 lines (31 loc) · 812 Bytes
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
spring:
r2dbc:
url: ${SPRING_R2DBC_URL:r2dbc:postgresql://localhost:5432/loadsdb}
username: ${SPRING_R2DBC_USERNAME:user}
password: ${SPRING_R2DBC_PASSWORD:password}
pool:
enabled: true
max-size: 20
initial-size: 10
sql:
init:
mode: always
security:
oauth2:
resourceserver:
jwt:
issuer-uri: ${KEYCLOAK_BASE_URL:http://localhost:7080}/realms/reloading
jwk-set-uri: ${KEYCLOAK_BASE_URL:http://localhost:7080}/realms/reloading/protocol/openid-connect/certs
eureka:
client:
serviceUrl:
defaultZone: ${DISCOVERY_SERVER:http://localhost:8761}/eureka/
instance:
instance-id: ${spring.application.name}:${random.uuid}
---
spring:
config:
activate:
on-profile: docker
server:
port: 8082