| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- server:
- port: 8080 #端口
- spring:
- cloud:
- # nacos
- nacos:
- discovery:
- register-enabled: true
- server-addr: nacos-server-hostname:8848
- username: nacos-prod
- password: centralprod
- namespace: a894fba3-ee6e-4dc7-938b-ad11112ccfa9
- circuitbreaker:
- sentinel:
- enabled: true
- sentinel:
- enabled: true
- transport:
- dashboard: sentinel-hostname:8858
- port: 8719
- datasource:
- ds-flow-rules:
- nacos:
- server-addr: nacos-server-hostname:8848
- username: nacos-prod
- password: centralprod
- namespace: 81037616-96ae-412c-a060-a633ba9731b9
- group-id: SENTINEL_GROUP
- data-id: ${spring.application.name}-flow-rules
- rule-type: flow
- data-type: json
- # 数据库配置
- datasource:
- url: jdbc:mysql://${ENV_DEFAULT_MYSQL_SERVER_ADDR}/central?useUnicode=true&characterEncoding=UTF-8&autoReconnect=true&useSSL=false&serverTimezone=Asia/Shanghai&allowPublicKeyRetrieval=true
- username: central
- password: central0510
- # rabbitmq配置
- rabbitmq:
- host: rabbitmq-hostname
- port: 5672
- username: central
- password: 240203qqqQQQWER
- # redis配置
- redis:
- host: redis-hostname
- port: 6379
- database: 0
- password: HorO9496sCopE
- clientName: ${spring.application.name}-redis
- # 日志配置
- logging:
- level:
- com:
- atmob:
- central: info
- github:
- binarywang: warn
- config:
- file-path:
- root: /
- pay-notify:
- host: https://central-os-api.atmob.com
- pay-status:
- payTimeoutSeconds: 3600
- pullTimeoutOutTradeNoCount: 5
- transferTimeoutSeconds: 300
- pullTimeoutOutTransferNoCount: 5
- ali-agreement:
- enable: true
- wf-transfer:
- baseUrl: http://101.42.105.13
- apiKey: 2f4cf89ec8de4e45824040199b8c10d8
- apiSecret: 1ffb95c08d3748599c95574052516ba8
- pay-error:
- warnEnabled: true
- webhookUrl: 'https://open.feishu.cn/open-apis/bot/v2/hook/7a458d4f-a31e-48b6-b9ed-dbce22d6f3af'
- filters:
- - name: '微信商户今日付款额度已达上限'
- cooldownMillis: 600000
- atAll: true
- keywords:
- - 'SEND_MONEY_LIMIT'
- - name: '微信商户付款余额不足'
- cooldownMillis: 600000
- atAll: true
- keywords:
- - 'NOTENOUGH'
- - name: '微信商户账户付款受限'
- cooldownMillis: 600000
- atAll: true
- keywords:
- - 'PAYER_ACCOUNT_ABNORMAL'
- risk-merchant:
- excluded:
- - 0
- filters:
- - name: 'ISV接口调用权限不足'
- riskCount: 11
- keywords:
- - 'isv.insufficient-isv-permissions'
- - '接口调用权限不足'
- serviceUrl:
- # 提现上报url
- transfer-report: https://i90okxj.v8dashen.com:4695
|