spring:
|
application:
|
name: huacheng-applets
|
cloud:
|
config:
|
discovery:
|
enabled: true
|
service-id: huacheng-config # 注册中心的服务名
|
profile: ${ENV:dev} # 指定配置文件的环境
|
uri: http://${CONFIG_URL:localhost}:6193/
|
profiles:
|
active: ${ENV:dev}
|
servlet:
|
multipart:
|
max-file-size: 200MB
|
max-request-size: 200MB
|
|
server:
|
max-http-header-size: 10MB
|
|
eureka:
|
client:
|
service-url:
|
defaultZone: http://${EUREKA_URL:localhost}:8192/eureka
|
|
wx:
|
miniapp:
|
appid: wx0cef797390444b75
|
secret: c7ea9aaa7e391a487e8a5b9ba61045d1
|
msgDataFormat: JSON
|
|
management:
|
endpoints:
|
web:
|
exposure:
|
include: '*'
|
|
endpoint:
|
health:
|
show-details: always
|
|
metrics:
|
tags:
|
application: huacheng-applets
|