-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathappsettings.json
More file actions
85 lines (85 loc) · 1.95 KB
/
appsettings.json
File metadata and controls
85 lines (85 loc) · 1.95 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"ConnectionStrings": {
"IdentityLiteDB": "Filename=./Data/IdentityLiteDB.db;Password=1234;Connection=Shared"
},
"AppSettings": {
"DataDirectory": "./App_Data",
"DatabaseDirectory": "./Data",
"AuditLogsPath": "./Data/audit",
"SigningCertificate": {
"Provider": "LocalPfx",
"LocalPfx": {
"Directory": "App_Data/certificates",
"ActiveCertificateId": ""
},
"AzureKeyVault": {
"VaultUri": "",
"CertificateName": "",
"UseDefaultAzureCredential": true,
"TenantId": "",
"ClientId": ""
}
},
"EmailTemplatesPath": "App_Data",
"MaxFileSize": 52428800,
"AllowedFileTypes": [
".docx",
".rtf",
".tx"
]
},
"BootstrapAdmin": {
"Email": "youradmin@email.com"
},
"Authentication": {
"Bearer": {
"Authority": "",
"Audience": "",
"RequireHttpsMetadata": true
},
"LocalOAuth": {
"Enabled": true,
"Issuer": "SignFabric",
"Audience": "signfabric-api",
"SigningKey": "yDzsiohpKd91kvA_I9QGAK0U6ig0zV3miy70pBbhZkuIpXNQcDV-uwjg8cs3Jg0S",
"AccessTokenMinutes": 60,
"Clients": []
},
"OpenIdConnect": {
"Enabled": false,
"DisplayName": "Single Sign-On",
"Authority": "",
"ClientId": "",
"ClientSecret": "",
"CallbackPath": "/signin-oidc",
"SignedOutCallbackPath": "/signout-callback-oidc",
"ResponseType": "code",
"SaveTokens": true,
"AutoProvisionUsers": true,
"Scopes": [
"openid",
"profile",
"email"
]
}
},
"Credentials": {
"EMail": {
"Username": "",
"Password": "",
"From": "",
"Bcc": "",
"Server": "",
"Port": 587,
"PasswordProtected": true
}
},
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
},
"AllowedHosts": "*"
}