1234567891011121314151617181920212223242526272829303132 |
- server:
- port: 8888
- spring:
- application:
- name: tofly-config
- profiles:
- active: native
-
- cloud:
- config:
- server:
- native:
- search-locations: ${CONFIG_PATH:classpath:/config/mysql/}
- eureka:
- instance:
- prefer-ip-address: true
- client:
- service-url:
- defaultZone: http://tofly-eureka:${EUREKAPORT:9999}/eureka/
- management:
- endpoints:
- web:
- exposure:
- include: '*'
|