35 lines
874 B
YAML
35 lines
874 B
YAML
server:
|
||
port: 10010
|
||
spring:
|
||
application:
|
||
#服务名称
|
||
name: gateway
|
||
profiles:
|
||
#配置文件生效环境
|
||
active: dev
|
||
|
||
cloud:
|
||
nacos:
|
||
#nacos服务器地址
|
||
server-addr: http://124.70.132.13:8848
|
||
#nacos服务发现配置
|
||
discovery:
|
||
#nacos服务注册命名空间ID,默认为public
|
||
namespace: 2e6a4975-46b3-4035-b77d-92b05ae48a66
|
||
#nacos配置文件配置
|
||
config:
|
||
#指定读取命名空间配置,默认为public
|
||
namespace: ${spring.cloud.nacos.discovery.namespace}
|
||
#nacos配置文件类型
|
||
file-extension: yaml
|
||
#共享配置
|
||
shared-configs:
|
||
- data-id: common-redis.yaml
|
||
group: SPRING_CLOUD_COMMONS
|
||
refresh: true
|
||
- data-id: common.yaml
|
||
group: SPRING_CLOUD_COMMONS
|
||
refresh: true
|
||
|
||
|