-
Notifications
You must be signed in to change notification settings - Fork 0
/
appsettings.json
30 lines (28 loc) · 935 Bytes
/
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
{
"Okta": {
"ClientId": "0oa50iqekmF39ql1C4x6",
"ClientSecret": "61clw4Q7muW-hL1a9gV87yllZM7hDQyPXNUbOCnt",
"Authority": "https://dev-101130.okta.com/",
"AuthorityJWBToken": "https://dev-101130.okta.com/oauth2/default"
},
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
},
"ConnectionStrings": {
"DefaultConnection": "Data Source=Database.db"
},
"LetsEncrypt": {
// Set this to automatically accept Let's Encrypt's terms of service.
// If you don't set this in config, you will need to press "y" whenever the application starts
"AcceptTermsOfService": true,
// You must at least one domain name
"DomainNames": [ "mydomain.com" ],
// You must specify an email address to register with letsencrypt.org
"EmailAddress": "[email protected]"
},
"AllowedHosts": "*"
}