1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| server:
| port: 6000
| spring:
| profiles:
| active: dev
| # active: prod
| application:
| name: message #服务名称
| servlet:
| multipart:
| max-request-size: 100MB
| max-file-size: 100MB
| redis:
| host: 192.168.110.80
| port: 6379
| password: 123456
| # host: 172.21.35.151
| # port: 6512
| # password: SC_cache@20#25
| # database: 0
| # timeout: 1000
| # cluster:
| # nodes: 172.21.35.151:6512,172.21.35.152:6512,172.21.35.153:6512,172.21.35.151:6513,172.21.35.152:6513,172.21.35.153:6513
|
|