-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapplication.yml
83 lines (67 loc) · 1.77 KB
/
application.yml
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
spring:
application:
name: "osb-reverse-proxy-template" # required for opentracing. should be overriden in symlinked copies
cloud:
gateway:
# https://cloud.spring.io/spring-cloud-gateway/reference/html/#troubleshooting
httpserver:
wiretap: true
httpclient:
wiretap: true
# https://cloud.spring.io/spring-cloud-gateway/reference/html/#tls-and-ssl
# ignore shield TLS cert for now
ssl:
useInsecureTrustManager: true
# https://cloud.spring.io/spring-cloud-gateway/reference/html/#tls-and-ssl
#server:
# ssl:
# enabled: true
# key-alias: scg
# key-store-password: scg1234
# key-store: classpath:scg-keystore.p12
# key-store-type: PKCS12
logging:
level:
reactor:
netty: debug
org:
springframework:
cloud:
gateway: debug
web:
reactive: trace
security: debug
http:
server:
reactive: debug
boot:
autoconfigure:
web: debug
actuate: debug
# turn on actuator endpoints protected by basic auth
# including spring cloud gateway specific endpoint, see https://cloud.spring.io/spring-cloud-gateway/reference/html/#actuator-api
management:
endpoint:
beans:
enabled: true
conditions:
enabled: true
info:
enabled: true
gateway:
enabled: true
health:
enabled: true
httptrace:
enabled: true
loggers:
enabled: true
metrics:
enabled: true
threaddump:
enabled: true
# make enabled endpoints accessible over web. setting "*" seems to expose also non enabled endpoints
endpoints:
web:
exposure:
include: "beans,conditions,info,gateway,health,httptrace,loggers,metrics,threaddump"