12345678910111213141516171819202122232425 |
- server:
- port: 21991
- spring:
- servlet:
- multipart:
- max-file-size: 10MB
- max-request-size: 100MB
- profiles:
- # dev 默认为开发环境 , prod 线上环境
- active: prod
- application:
- name: carbon-h5
- cloud:
- nacos:
- discovery:
- server-addr: 127.0.0.1:8892
- config:
- server-addr: 127.0.0.1:8892
- prefix: carbon-h5
- file-extension: yml
- # 公共配置文件
- shared-dataids: carbon-common.yml
- myredis:
- address: redis://${spring.redis.host}:${spring.redis.port}
- passord: ${spring.redis.password}
|