Mico.Demo/MicoService.Demo2/appsettings.Development.json

29 lines
911 B
JSON
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"nacos": {
// Nacos 配置中心的配置
"Namespace": "685d64ce-d088-400f-8cfe-a669a89015d0", // 你的命名空间ID
"ServerAddresses": [ "http://192.168.2.9:8848" ], // 自建Nacos地址去掉末尾/,避免解析问题)
"UserName": "nacos", // 你的Nacos用户名
"Password": "qwe123!@#", // 你的Nacos密码
"Group": "DEFAULT_GROUP", // 默认配置分组,可按需修改
"Listeners": [
{
"Optional": false,
"DataId": "demo2",
"Group": "DEFAULT_GROUP"
}
],
// Ncaos 注册中心的配置
"DefaultTimeOut": 15000,
"ListenInterval": 1000,
"ServiceName": "Mico_Demo2222",
"GroupName": "DEFAULT_GROUP",
"RegisterEnabled": true,
"InstanceEnabled": true,
"Ephemeral": true,
"ConfigUseRpc": true,
"NamingUseRpc": true,
"LBStrategy": "WeightRandom" //WeightRandom WeightRoundRobin
}
}