43 lines
804 B
YAML
43 lines
804 B
YAML
server:
|
|
port: 2500
|
|
shutdown: graceful
|
|
undertow:
|
|
no-request-timeout: 10000
|
|
|
|
spring:
|
|
lifecycle:
|
|
timeout-per-shutdown-phase: 30s
|
|
main:
|
|
allow-bean-definition-overriding: true
|
|
profiles:
|
|
active: @profiles.active@
|
|
group:
|
|
local: web-framework,openfeign,mybatis-plus
|
|
dev: web-framework,openfeign,mybatis-plus
|
|
prod: web-framework,openfeign,mybatis-plus
|
|
|
|
management:
|
|
endpoints:
|
|
web:
|
|
exposure:
|
|
include: "*"
|
|
endpoint:
|
|
shutdown:
|
|
enabled: false
|
|
info:
|
|
enabled: true
|
|
health:
|
|
show-details: always
|
|
|
|
red-circle:
|
|
redis:
|
|
# 注意: 这个key是字符串的, 必须是这样的驼峰写法
|
|
enableKeyListener: true
|
|
|
|
req:
|
|
ignore:
|
|
urls: /agora/callback,/heartbeat
|
|
statistic:
|
|
time: 10
|
|
limit:
|
|
count: 200 |