-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathappsettings.json
46 lines (46 loc) · 1.22 KB
/
appsettings.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
/*
# -------------------------------------------------------------------------------
# Author: Cody Martin <cody.martin@blacklanternsecurity.com>
#
# Updated: 08-23-2022
# Copyright: (c) BLS OPS LLC. 2022
# Licence: GPL
# -------------------------------------------------------------------------------
*/
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
},
"ETMDatabaseSettings": {
"AssessmentsCollectionName": "Assessments",
"ScenariosCollectionName": "Scenarios",
"StepsCollectionName": "Steps",
"SteplatesCollectionName": "Steplates",
"UsersCollectionName": "Users",
"TreesCollectionName": "Trees",
"KeysCollectionName": "Keys",
"ConnectionString": "mongodb://root:CHANGEMESUCKAH@mongo:27017/?compressors=zlib&gssapiServiceName=mongodb",
"DatabaseName": "Enter_The_Matrix"
},
"LocalAuthSettings": {
"AdminName": "admin",
"AdminPassword": "CHANGEME"
},
"AllowedHosts": "*",
"Ldap": {
"Path": "192.168.1.1",
"Port": 389,
"UserDomainName": "DOMAIN-HERE"
},
"Kestrel": {
"EndPoints": {
"Http": {
"Url": "http://+:5000"
}
}
}
}