-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconf.dev.json
More file actions
67 lines (58 loc) · 1.48 KB
/
conf.dev.json
File metadata and controls
67 lines (58 loc) · 1.48 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
61
62
63
64
65
66
67
{
"ListenPort": 8080,
"PingIP": "8.8.8.8:80",
"DisableGzip": true,
"DisableSSL": true,
"SSLCertFile": "",
"SSLKeyFile": "",
"ExtApiBaseUrl": "http://localhost/ext/api/",
"DBReader": {
"PDbHost": "localhost",
"PDbPort": 5432,
"PDbName": "testdb",
"PDbUser": "testuser",
"PDbPwd": "testuser",
"PDbTimeout": 30,
"PDbSSLMode": "disable"
},
"DBWriter": {
"PDbHost": "localhost",
"PDbPort": 5432,
"PDbName": "testdb",
"PDbUser": "testuser",
"PDbPwd": "testuser",
"PDbTimeout": 30,
"PDbSSLMode": "disable"
},
"AuthSrv": {
"AuthServerURL": "http://url-to-auth-server/",
"AuthServerVendorID": "vendor-id",
"AuthTokenEndPoint": "token",
"AuthRefreshTokenEndPoint": "refresh",
"AuthRevokeEndPoint": "revoke",
"AuthRouteAccessControlEndPoint": "getroutes"
},
"Mongo": {
"Host": "localhost",
"Port": 27017,
"DbName": "apiroutes",
"User": "",
"Pwd": "",
"ConnTimeout": 20
},
"Redis": {
"Host": "localhost",
"Port": 6379,
"DB": 2,
"Pwd": "",
"KeyPrefix": "myapp:",
"ExpirationInMinute": 180
},
"JwtAuthConfig": {
"JWTIssuer": "auth-srvr-issuewer",
"JWTAudience": "http://localhost:8080",
"JWTTimeSkew": 2
},
"MyDomain": "localhost",
"LogLevel": "info"
}