-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.pg.json
45 lines (45 loc) · 1.33 KB
/
config.pg.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
{
"HostPort" : 8000,
"HMAC": "thisisanhmacsecretkey",
"DefaultDatabaseID": "DEFAULT",
"MailServer" : {
"Host": "192.168.1.20",
"Port" : 25,
"User" : "",
"Password" : "",
"SenderName": "AppsHub"
},
"Databases" : [
{
"ID" : "DEFAULT",
"ConnectionString" : "postgres://postgres:password@127.0.0.1/keannu_sys?sslmode=disable",
"DriverName" : "postgres",
"StorageType": "SERVER",
"GroupID": "",
"SequenceGenerator" : {
"UpsertQuery" : "",
"ResultQuery" : "DECLARE @surrogatekey INT; EXEC dbo.spGetNextSurrogateKey '{SequenceName}', @surrogatekey OUTPUT; SELECT @surrogatekey;",
"NamePlaceHolder": "{SequenceName}"
}
}
],
"Domains": [
{
"Name":"VDIMDCI",
"Host":"192.168.1.24",
"Port" : 389,
"Path": "DC=VDIMDCI,DC=COM,DC=PH",
"AuthorizedUser": "kapitan",
"AuthorizedPassword": "D0m@1nAdm1n",
"Filter": "(objectClass=person)"
}
],
"NotifyRecipients": [
{
"ID":"test",
"FullName":"Test User",
"EmailAddress":"testuser@yahoo.com",
"MessengerName" : "test"
}
]
}