-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappsettings.json
More file actions
41 lines (41 loc) · 898 Bytes
/
appsettings.json
File metadata and controls
41 lines (41 loc) · 898 Bytes
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
{
"Db": {
"Host": "localhost",
"Port": 5432,
"Name": "fxdb",
"UserName": "postgres",
"Password": "p@$$w0rd",
"AdditionalOptions": {
"SslMode": "Disable",
"Pooling": true
}
},
"Localization": {
"Language": "en"
},
"PluginRegistry": {
"Url": "https://plugins.flowsynx.io/"
},
"Encryption": {
"Key": "<YOUR_KEY_BASE64>"
},
"Security": {
"EnableBasic": true,
"BasicUsers": [
{
"id": "0960a93d-e42b-4987-bc07-7bda806a21c7",
"name": "admin",
"password": "admin",
"roles": [ "admin" ]
},
{
"id": "24546675-dfad-4df6-a1c4-e997e0f651ba",
"name": "user",
"password": "user",
"roles": [ "user" ]
}
],
"JwtProviders": [],
"DefaultScheme": "Basic"
}
}