-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathapplication.yml
More file actions
57 lines (48 loc) · 1.03 KB
/
application.yml
File metadata and controls
57 lines (48 loc) · 1.03 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
spring:
application:
name: solid-connect-server
config:
import:
- optional:classpath:/config/application-cloud.yml
- optional:classpath:/config/application-db.yml
- optional:classpath:/config/application-variable.yml
- aws-parameterstore:/solid-connection/common/
tomcat:
threads:
min-spare: 20 # default 10
servlet:
multipart:
max-file-size: 10MB
max-request-size: 10MB
mvc:
path match:
matching-strategy: ANT_PATH_MATCHER
management:
endpoints:
web:
exposure:
include: prometheus
---
spring:
config:
activate:
on-profile: local
import: aws-parameterstore:/solid-connection/local/
---
spring:
config:
activate:
on-profile: dev
import: aws-parameterstore:/solid-connection/dev/
---
spring:
config:
activate:
on-profile: prod
import: aws-parameterstore:/solid-connection/prod/
---
spring:
config:
activate:
on-profile: loadtest
import: aws-parameterstore:/solid-connection/loadtest/