-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathconfig-template.json
58 lines (58 loc) · 1.24 KB
/
config-template.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
{
"keycloak": {
"baseUri": "http://keycloak:8080",
"realmName": "reconmap",
"clientId": "admin-cli",
"clientSecret": "xxxxxxxxxxxxxxxxxxyyyyyyyyyyyyyy"
},
"jwt": {
"issuer": "http://localhost:8080/realms/reconmap",
"audience": "account",
"key": ""
},
"cors": {
"allowedOrigins": [
"http://localhost:5500",
"http://127.0.0.1:5500"
]
},
"database": {
"host": "rmap-mysql",
"username": "reconmapper",
"password": "reconmapped",
"name": "reconmap"
},
"smtp": {
"host": "just.another.smtp.server",
"port": 587,
"username": "smtpuser",
"password": "smtpsecret",
"verifyPeer": "true",
"fromEmail": "[email protected]",
"fromName": "Reconmap"
},
"logging": {
"file": {
"enabled": true,
"level": "debug",
"path": "/var/www/webapp/logs/application.log"
},
"gelf": {
"enabled": false,
"level": "debug",
"serverName": "api-graylog-1",
"serverPort": 12201
}
},
"integrations": {
"gitter": {
"enabled": false,
"token": "yourpersonaltoken",
"roomId": "yourroomid"
},
"maxmind": {
"enabled": false,
"dbPath": "/var/www/webapp/data/GeoLite2-City.mmdb"
}
}
}