12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- spring:
- application:
- name: svr-base
- cloud:
- config:
- failFast: true
- username: jw
- password: jkzl
- ---
- spring:
- profiles: jwdev
- cloud:
- config:
- uri: ${wlyy.spring.config.uri:http://172.26.0.107:1221}
- label: ${wlyy.spring.config.label:jwdev}
- ---
- spring:
- profiles: jwtest
- cloud:
- config:
- uri: ${wlyy.spring.config.uri:http://172.26.0.107:1221}
- label: ${wlyy.spring.config.label:jwdev}
- ---
- spring:
- profiles: iottest
- cloud:
- config:
- uri: ${wlyy.spring.config.uri:http://172.26.0.109:1221}
- label: ${wlyy.spring.config.label:jwdev}
- ---
- spring:
- profiles: jwprod
- cloud:
- config:
- uri: ${wlyy.spring.config.uri:http://192.0.33.26:1221}
- label: ${wlyy.spring.config.label:master}
- ---
- spring:
- profiles: xzprod
- cloud:
- config:
- uri: ${wlyy.pring.config.uri:http://172.16.100.63:1221}
- label: ${wlyy.spring.config.label:master}
- ---
- spring:
- profiles: local
- cloud:
- config:
- uri: ${wlyy.spring.config.uri:http://172.26.0.107:1221}
- label: ${wlyy.spring.config.label:local}
- ---
- spring:
- profiles: xmjwlocal
- cloud:
- config:
- uri: ${wlyy.pring.config.uri:http://10.95.22.193:1221}
- label: ${wlyy.spring.config.label:master}
- ---
- spring:
- profiles: iotprod
- cloud:
- config:
- uri: ${wlyy.spring.config.uri:http://172.26.0.109:1221}
- label: ${wlyy.spring.config.label:master}
|