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
| {
| "Logging": {
| "LogLevel": {
| "Default": "Information",
| "Microsoft.AspNetCore": "Warning"
| }
| },
| "AllowedHosts": "*",
| "urls": "http://*:5000",
| "MainDB": "DB_WIDESEA", //当前项目的主库,所对应的连接字符串的Enabled必须为truedata
| "ConnectionStringsEncryption": false,
| //"DBType": "MySql",
| "DBType": "SqlServer",
| //连接字符串
| //"ConnectionString": "HTI6FB1H05Krd07mNm9yBCNhofW6edA5zLs9TY~MNthRYW3kn0qKbMIsGp~3yyPDF1YZUCPBQx8U0Jfk4PH~ajNFXVIwlH85M3F~v_qKYQ3CeAz3q1mLVDn8O5uWt1~3Ut2V3KRkEwYHvW2oMDN~QIDXPxDgXN0R2oTIhc9dNu7QNaLEknblqmHhjaNSSpERdDVZIgHnMKejU_SL49tralBkZmDNi0hmkbL~837j1NWe37u9fJKmv91QPb~16JsuI9uu0EvNZ06g6PuZfOSAeFH9GMMIZiketdcJG3tHelo=",
| "ConnectionString": "Data Source=127.0.0.1;Initial Catalog=WIDESEA_WMSLG;User ID=sa;Password=P@ssw0rd;Integrated Security=False;Connect Timeout=30;Encrypt=False;TrustServerCertificate=False;ApplicationIntent=ReadWrite;MultiSubnetFailover=False",
| //"ConnectionStringAGV": "Server=127.0.0.1;Database=makerwit382;Uid=root;Pwd=makerwitc;",
| "ConnectionStringAGV": "Server=127.0.0.1;Database=makerwit382;Uid=root;Pwd=P@ssw0rd;",
| //跨域
| "Cors": {
| "PolicyName": "CorsIpAccess", //策略名称
| "EnableAllIPs": true, //当为true时,开放所有IP均可访问。
| // 支持多个域名端口,注意端口号后不要带/斜杆:比如localhost:8000/,是错的
| // 注意,http://127.0.0.1:1818 和 http://localhost:1818 是不一样的
| "IPs": "http://127.0.0.1:8080,http://localhost:8080,http://127.0.0.1:8081,http://localhost:8081"
| },
|
| //缓存设置
| "CacheSettings": {
| "UseRedis": false, //启用redis
| "RedisSettings": {
| "Address": "127.0.0.1:6379", //地址
| "Password": "123456", //Redis服务密码
| "Db": 9, //默认库
| "ClearRedis": true //是否每次启动都清除Redis缓存
| }
| },
|
| "ApiName": "WIDESEA",
| "ExpMinutes": 120,
|
| // 需要移库的行
| "TransfertRows": "1,4,5,8",
| "PDAVersion": "2",
| "Connection": {
| "IP": "10.42.180.129",
| "Port": "16001"
| },
| "AGVIP": "127.0.0.1:8370"
| }
|
|