-
Notifications
You must be signed in to change notification settings - Fork 4
/
zeebe.yml
57 lines (52 loc) · 1.14 KB
/
zeebe.yml
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
zeebe:
clients:
- name: MyCustomClient
brokerContactPoint: "localhost:25600"
requestTimeout: PT20S
workers:
- name: SimpleScriptWorker
jobTypes:
- type1
timeout: PT10S
- name: UT-Worker
jobTypes:
- ut.generic
timeout: P1D
executors:
- name: Script-Executor
address: "type1"
execute: ./scripts/script1.js
- name: CommonGenericExecutor
address: commonExecutor
execute: classpath:com.custom.executors.Executor1
- name: IpBlocker
address: block-ip
execute: ./cyber/BlockIP.py
userTaskExecutors:
- name: GenericUserTask
address: ut.generic
managementServer:
enabled: true
apiRoot: server1
corsRegex: ".*."
port: 8080
instances: 1
zeebeClient:
name: DeploymentClient
brokerContactPoint: "localhost:25600"
requestTimeout: PT10S
formValidatorServer:
enabled: true
corsRegex: ".*."
port: 8082
instances: 1
formValidatorService:
host: localhost
port: 8083
validateUri: /validate
requestTimeout: 5000
userTaskServer:
enabled: true
corsRegex: ".*."
port: 8088
instances: 1