application.yml 825 B

123456789101112131415161718192021222324252627282930313233
  1. spring:
  2. application:
  3. name: eureka-server
  4. security:
  5. user:
  6. name: admin
  7. password: select111***
  8. eureka:
  9. server:
  10. enable-self-preservation: false
  11. instance:
  12. status-page-url-path: /actuator/info
  13. health-check-url-path: /actuator/health
  14. home-page-url-path: /
  15. hostname: localhost
  16. metadata-map:
  17. user.name: ${spring.security.user.name}
  18. user.password: ${spring.security.user.password}
  19. client:
  20. register-with-eureka: false
  21. fetch-registry: false
  22. service-url:
  23. defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka/
  24. server:
  25. port: 9500
  26. tomcat:
  27. uri-encoding: UTF-8
  28. info:
  29. name: 'eureke-server'
  30. description: 'smartschool-platform'
  31. version: '1.0.0-SNAPSHOT'
  32. spring-boot-version: '2.0.4.RELEASE'
  33. spring-cloud-version: 'Finchley.SR1'