bootstrap.yml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. spring:
  2. application:
  3. name: svr-base
  4. cloud:
  5. config:
  6. failFast: true
  7. username: jw
  8. password: jkzl
  9. ---
  10. spring:
  11. profiles: jwdev
  12. cloud:
  13. config:
  14. uri: ${wlyy.spring.config.uri:http://172.26.0.107:1221}
  15. label: ${wlyy.spring.config.label:jwdev}
  16. ---
  17. spring:
  18. profiles: jwtest
  19. cloud:
  20. config:
  21. uri: ${wlyy.spring.config.uri:http://172.26.0.107:1221}
  22. label: ${wlyy.spring.config.label:jwdev}
  23. ---
  24. spring:
  25. profiles: iottest
  26. cloud:
  27. config:
  28. uri: ${wlyy.spring.config.uri:http://172.26.0.109:1221}
  29. label: ${wlyy.spring.config.label:jwdev}
  30. ---
  31. spring:
  32. profiles: jwprod
  33. cloud:
  34. config:
  35. uri: ${wlyy.spring.config.uri:http://192.0.33.26:1221}
  36. label: ${wlyy.spring.config.label:master}
  37. ---
  38. spring:
  39. profiles: xzprod
  40. cloud:
  41. config:
  42. uri: ${wlyy.pring.config.uri:http://172.16.100.63:1221}
  43. label: ${wlyy.spring.config.label:master}
  44. ---
  45. spring:
  46. profiles: local
  47. cloud:
  48. config:
  49. uri: ${wlyy.spring.config.uri:http://172.26.0.107:1221}
  50. label: ${wlyy.spring.config.label:local}
  51. ---
  52. spring:
  53. profiles: xmjwlocal
  54. cloud:
  55. config:
  56. uri: ${wlyy.pring.config.uri:http://10.95.22.193:1221}
  57. label: ${wlyy.spring.config.label:master}
  58. ---
  59. spring:
  60. profiles: iotprod
  61. cloud:
  62. config:
  63. uri: ${wlyy.spring.config.uri:http://172.26.0.109:1221}
  64. label: ${wlyy.spring.config.label:master}