-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappsettings.json
More file actions
57 lines (57 loc) · 1.23 KB
/
Copy pathappsettings.json
File metadata and controls
57 lines (57 loc) · 1.23 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
{
"AllowedHosts": "*",
"Serilog": {
"MinimumLevel": {
"Default": "Information",
"Override": {
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information",
"System": "Warning"
}
},
"Enrich": [
"FromLogContext",
"WithMachineName",
"WithProcessId",
"WithThreadId"
],
"WriteTo": [
{ "Name": "Console" },
{
"Name": "Seq",
"Args": {
"serverUrl": "%SEQ_URL%"
}
}
],
"Properties": {
"Application": "SatOps"
}
},
"Auth0": {
"Domain": "%AUTH0_DOMAIN%",
"Audience": "%AUTH0_AUDIENCE%",
"ClientId": "%AUTH0_CLIENT_ID%",
"ClientSecret": "%AUTH0_CLIENT_SECRET%"
},
"Jwt": {
"Key": "%JWT_SECRET_KEY%",
"Issuer": "SatOps",
"Audience": "SatOps-GroundStations",
"ExpirationHours": 24
},
"GroundStationHealthCheck": {
"IntervalSeconds": 240
},
"MinIO": {
"Endpoint": "localhost:9000",
"AccessKey": "minioadmin",
"SecretKey": "minioadmin",
"Secure": false,
"BucketName": "satops-data"
},
"ImagingCalculation": {
"MaxSearchDurationHours": 48,
"MaxOffNadirDegrees": 40.0
}
}