-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathappsettings.Production.json
More file actions
31 lines (31 loc) · 1.09 KB
/
appsettings.Production.json
File metadata and controls
31 lines (31 loc) · 1.09 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
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Information",
"Shark.Fido2": "Debug",
"System.Net.Http.HttpClient.Default": "Warning"
}
},
"AllowedHosts": "*",
"Fido2Configuration": {
"RelyingPartyId": "app-fido2-dev-04-dbggbwc5h7edfgcf.westeurope-01.azurewebsites.net",
"RelyingPartyIdName": "Shark Corporation",
"Origins": [ "app-fido2-dev-04-dbggbwc5h7edfgcf.westeurope-01.azurewebsites.net" ],
"Timeout": 30000,
"AlgorithmsSet": "Extended",
"AllowNoneAttestation": true,
"AllowSelfAttestation": true,
"EnableTrustedExecutionEnvironmentOnly": true,
"EnableMetadataService": true,
"EnableStrictAuthenticatorVerification": false,
"MetadataServiceConfiguration": {
"MetadataBlobLocation": "https://mds3.fidoalliance.org/",
"RootCertificateLocationUrl": "https://secure.globalsign.com/cacert/root-r3.crt",
"MaximumTokenSizeInBytes": 10485760
},
"ConvenienceMetadataServiceConfiguration": {
"ConvenienceMetadataBlobLocation": "https://c-mds.fidoalliance.org/"
}
}
}