forked from anjoy8/Blog.Core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappsettings.json
More file actions
103 lines (100 loc) · 2.47 KB
/
appsettings.json
File metadata and controls
103 lines (100 loc) · 2.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"Logging": {
"IncludeScopes": false,
"Debug": {
"LogLevel": {
"Default": "Warning"
}
},
"Console": {
"LogLevel": {
"Default": "Warning",
"Microsoft.Hosting.Lifetime": "Debug"
}
}
},
"AllowedHosts": "*",
"Startup": {
"Cors": {
"PolicyName": "CorsIpAccess",
"EnableAllIPs": false,
"IPs": "http://127.0.0.1:2364,http://localhost:2364"
}
},
"Audience": {
"Secret": "sdfsdfsrty45634kkhllghtdgdfss345t678fs",
"SecretFile": "C:\\my-file\\blog.core.audience.secret.txt",
"Issuer": "Blog.Core",
"Audience": "wr"
},
"WhiteList": [
{ "url": "/" },
{ "url": "/illagal/****" },
{ "url": "/api3/****" },
{ "url": "/baseapi/swagger.json" }
],
"BlackList": [
{ "url": "/favicon.ico" }
],
"ApiGateWay": {
"OcelotConfig": "OcelotConfig.json",
"OcelotConfigGroup": "DEFAULT_GROUP",
"AppConfig": "****.****.Gateway.json",
"AppConfigGroup": "DEFAULT_GROUP",
"PermissionServName": "****.****.Api",
"PermissionServGroup": "DEFAULT_GROUP",
"PermissionServUrl": "/api/Permission/GetPermissionlist"
},
"Influxdb": {
"Endpoint": "http://*******:9328",
"uid": "root",
"pwd": "*****",
"dbname": "mndata"
},
"nacos": {
"ServerAddresses": [ "http://******:8848/" ],
"ServiceName": "*****.****.Gateway",
"DefaultTimeOut": 15000,
"Namespace": "****",
"ListenInterval": 1000,
"GroupName": "DEFAULT_GROUP",
"ClusterName": "DEFAULT",
"Ip": "",
"PreferredNetworks": "",
"Port": 8090,
"Weight": 100,
"RegisterEnabled": true,
"InstanceEnabled": true,
"Ephemeral": true,
"Secure": false,
"AccessKey": "",
"SecretKey": "",
"UserName": "****",
"Password": "*****",
"NamingUseRpc": true,
"NamingLoadCacheAtStart": "",
"LBStrategy": "WeightRandom",
"Metadata": {
"aa": "bb",
"cc": "dd",
"endpoint33": "******:8090"
}
},
"nacosConfig": {
"ServiceName": "*****.*****.Gateway",
"Optional": false,
"DataId": "options1",
"Tenant": "******",
"Group": "DEFAULT_GROUP",
"Namespace": "*****",
"ServerAddresses": [ "http://******:8848/" ],
"UserName": "****",
"Password": "*****",
"AccessKey": "",
"SecretKey": "",
"EndPoint": "",
"ConfigUseRpc": true,
"ConfigFilterAssemblies": [ "apigateway" ],
"ConfigFilterExtInfo": "{\"JsonPaths\":[\"ConnectionStrings.Default\"],\"Other\":\"xxxxxx\"}"
}
}