bootstrap.yml 1018 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. server:
  2. port: 8501
  3. spring:
  4. application:
  5. name: FEBS-Config
  6. boot:
  7. admin:
  8. client:
  9. url: http://${febs-monitor-admin}:8401
  10. username: febs
  11. password: 123456
  12. profiles:
  13. active: git
  14. cloud:
  15. config:
  16. server:
  17. git:
  18. uri: 您的git仓库链接
  19. search-paths: /config/
  20. username: 您的git仓库用户名
  21. password: 您的git仓库密码
  22. clone-on-start: true
  23. eureka:
  24. instance:
  25. lease-renewal-interval-in-seconds: 20
  26. client:
  27. register-with-eureka: true
  28. fetch-registry: true
  29. instance-info-replication-interval-seconds: 30
  30. registry-fetch-interval-seconds: 3
  31. serviceUrl:
  32. defaultZone: http://febs:123456@${febs-register}:8001/register/eureka/
  33. info:
  34. app:
  35. name: ${spring.application.name}
  36. description: "@project.description@"
  37. version: "@project.version@"
  38. management:
  39. endpoints:
  40. web:
  41. exposure:
  42. include: '*'
  43. endpoint:
  44. health:
  45. show-details: ALWAYS