26 lines
428 B
YAML
26 lines
428 B
YAML
server:
|
|
port: 8888
|
|
|
|
spring:
|
|
application:
|
|
name: config-service
|
|
profiles:
|
|
active: native # native file repository
|
|
cloud:
|
|
config:
|
|
server:
|
|
native:
|
|
search-locations: file:///usr/app/config # docker
|
|
rabbitmq:
|
|
host: localhost
|
|
port: 5672
|
|
username: guest
|
|
password: guest
|
|
|
|
# config server actuator
|
|
management:
|
|
endpoints:
|
|
web:
|
|
exposure:
|
|
include: busrefresh
|