123456789101112131415161718192021222324252627282930313233343536373839404142 |
- {
- "Logging": {
- "LogLevel": {
- "Default": "Information",
- "Microsoft": "Warning",
- "Microsoft.Hosting.Lifetime": "Information"
- }
- },
- "AllowedHosts": "*",
- "TokenKey": "Authorization",
- "TokenValue": "123456",
- "JwtKeyName": "JwtKeyName",
- "JwtSecurityKey": "1CC76841-F25D-4389-89FE-0F9451163CF1",
- //Json 存储方式 配置
- "DbPath": {
- "Project": "/db/Projects.json",
- "Tasks": "/db/Tasks.json"
- },
- //是否使用 Redis 存储 1是 0否 默认使用 json 文件
- "UseRedis": "0",
- //Redis 存储方式 配置
- "RedisDbPath": {
- "Project": "IMCS.CCS:Project",
- "Tasks": "IMCS.CCS:Tasks"
- },
- //Redis 连接字符串
- "RedisConnectionString": "127.0.0.1:6379,password=123456,defaultDatabase=0",
- //数据连接配置
- "ConnectionStrings": {
- "mysqlContext": "server=localhost;port=3306;database=ccs_300;uid=root;pwd=123456;CharSet=utf8;Allow Zero Datetime=True",
- "ecsUrlContext": "http://192.168.3.102:9099/api/authority/taskNode/taskNodeCallback",
- //"FTPServer": "192.168.170.25",
- //"FTPUser": "PROG",
- //"FTPPwd": "abc.1234",
- "FTPServer": "127.0.0.1",
- "FTPUser": "test",
- "FTPPwd": "test",
- "fanucUrlContext": "http://localhost:5100/fanuc/",
- "opcuacUrlContext": "http://localhost:8010/opcua/",
- "hdhUrlContext": "http://localhost:8011/heidenhain/"
- }
- }
|