-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathconfig.json
More file actions
60 lines (55 loc) · 1.9 KB
/
config.json
File metadata and controls
60 lines (55 loc) · 1.9 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
{
"IsMultiServer": false,
"DeveloperMode": false,
"url": "http://*:8077/",
"PathBase": "/",
"BackendFolder": "../backend",
"MetadataFolder": "../metadata",
"LicensePath": "../license",
//"CertificateFile": "../WFS.pfx",
//"CertificatePassword": "password",
"CallBackCacheTimeout": 300000, // 5 min
"CreateMetadata": true,
"InitialScriptsFolder": "../InitialScripts",
"DefaultLoggerConfig": {
"ConsoleTarget": [ "Information", "Error" ],
"FileTarget": [ "Information", "Error" ]
},
"ExternalEventLoggerConfig": {
"ConsoleTarget": [ "Error" ]
},
"DefaultCorsSettings": {
"AllowedOrigins": [
"*"
]
},
"AssertNullOrWhitespaceTenantId": false,
"Salt": "5b4c5099534d48f3873648b8793c9b85",
"AuthorityUrl" : "http://localhost:8077",
"DisableOpenIddictServer": true,
"OpenIddictServerSettings": {
"CertificateFile": "../../../localhost.pfx",
"CertificatePassword": "password",
"RedirectHosts": [ "https://localhost:8077", "https://localhost:8091" ],
"RedirectUrls": []
},
"WorkflowApi": {
"BlockUserApi": false
},
"GlobalCommandTimeout": 30,
//MSSQL
"Provider": "mssql",
"ConnectionString": "Data Source=(local);Initial Catalog=WorkflowServer;Integrated Security=False;User ID=sa;Password=1;"
//PostgreSQL
//"Provider": "postgresql",
//"ConnectionString": "User ID=postgres;Password=1;Host=localhost;Port=5432;Database=WorkflowServer;"
//Oracle
//"Provider": "oracle",
//"ConnectionString": "Data Source=(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(COMMUNITY = tcp.world)(PROTOCOL = TCP)(Host = MyHost)(Port = 1521)))(CONNECT_DATA=(SID=MyOracleSID)));User ID=myUsername;Password=myPassword;"
//MySql
//"Provider": "mysql",
//"ConnectionString": "server=127.0.0.1;uid=root;pwd=myPassword;database=WorkflowServer"
//MongoDB or Cosmos DB
//"Provider": "mongodb",
//"ConnectionString": "mongodb://localhost:27017/WorkflowServer"
}