-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappsettings.json
More file actions
78 lines (70 loc) · 1.98 KB
/
Copy pathappsettings.json
File metadata and controls
78 lines (70 loc) · 1.98 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
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning",
"FlowableWrapper": "Debug"
}
},
"AllowedHosts": "*",
"Jwt": {
"Mode": "TrustedJwt",
"Authority": "",
"RequireHttpsMetadata": false,
"UseridClaim": "userid",
"FallbackUseridClaims": [ "sub", "employee_id", "uid" ]
},
"ElasticSearch": {
"Uri": "http://192.168.124.2:19200",
"IndexName": "flowable-process-metadata",
"AuditIndexName": "flowable-audit-records",
"SemanticIndexName": "flowable-process-definition-semantic",
"Username": "",
"Password": ""
},
"Flowable": {
"BaseUrl": "http://192.168.124.2:18080/flowable-rest/service",
"Username": "rest-admin",
"Password": "test",
"TimeoutSeconds": 30,
"FrameworkCallbackUrl": "http://192.168.124.5:5012/api/callback/flowable"
},
"BusinessTypeProcessMapping": {
"Mappings": {
"personnel_selection_approval": "personnel_selection_approval",
"problem_zero": "problem_zero",
"portal_content_approval": "portal_content_approval"
}
},
"Redis": {
"ConnectionString": "192.168.124.2:16379",
"KeyPrefix": "process-center:"
},
"Dm8": {
"Enabled": false,
"ConnectionString": "",
"Schema": "FLOW_RELIABILITY",
"CommandTimeoutSeconds": 30
},
"CallbackWorker": {
"Enabled": false,
"PollIntervalMilliseconds": 500,
"BatchSize": 20,
"GlobalConcurrency": 20,
"PerDownstreamConcurrency": 5,
"LeaseSeconds": 90,
"HttpTimeoutSeconds": 30,
"MaxAttempts": 5
},
"ProcessNotification": {
"Enabled": false,
"MessageCenterBaseUrl": "http://localhost:5000",
"SendPath": "/api/message-center/send",
"TimeoutSeconds": 10,
"TokenEndpoint": "http://192.168.124.2:18085/realms/master/protocol/openid-connect/token",
"ClientId": "flow",
"ClientSecret": "g8vbvVLH1Z8KFJac9sTXFR4f4TjGH4rC",
"BusinessType": "process_task",
"TaskUrlTemplate": "/process/tasks/{taskId}"
}
}