| 123456789101112131415161718192021222324252627282930313233 |
- spring:
- application:
- name: eureka-server
- security:
- user:
- name: admin
- password: select111***
- eureka:
- server:
- enable-self-preservation: false
- instance:
- status-page-url-path: /actuator/info
- health-check-url-path: /actuator/health
- home-page-url-path: /
- hostname: localhost
- metadata-map:
- user.name: ${spring.security.user.name}
- user.password: ${spring.security.user.password}
- client:
- register-with-eureka: false
- fetch-registry: false
- service-url:
- defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka/
- server:
- port: 9500
- tomcat:
- uri-encoding: UTF-8
- info:
- name: 'eureke-server'
- description: 'smartschool-platform'
- version: '1.0.0-SNAPSHOT'
- spring-boot-version: '2.0.4.RELEASE'
- spring-cloud-version: 'Finchley.SR1'
|