-
Notifications
You must be signed in to change notification settings - Fork 58
/
config.json
65 lines (60 loc) · 2.17 KB
/
config.json
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
{
"IsMultiServer": false,
"DeveloperMode": false,
"ServerType": "All", // Under IIS you SHOULD (!!!) change to Admin or Forms value
//"RuntimeId": "someruntimeid", //specify runtime name for multi-server mode here
"AlwaysShowOpenFormButton": false,
"url": "http://*:8077/",
"PathBase": "/",
"FrontendFolder": "../frontend",
"DefaultFrontendPort": "8078",
"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",
"IdentityServerSettings": {
"CertificateFile": "IdentityServer4Auth.pfx",
"CertificatePassword": "password",
"RedirectHosts": [ "http://localhost:8077", "http://localhost:8078" ],
"RedirectUrls": [],
"UseHostRedirectValidator": false
},
"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"
}