-
Notifications
You must be signed in to change notification settings - Fork 0
/
appsettings.json
57 lines (57 loc) · 1.31 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
47
48
49
50
51
52
53
54
55
56
57
{
"Certificates": {
"HTTPS": {
"Source": "Store",
"StoreLocation": "CurrentUser",
"StoreName": "My",
"Subject": "CN=localhost",
"AllowInvalid": true
},
"IdentityService": {
"Source": "Store",
"StoreLocation": "CurrentUser",
"StoreName": "My",
"Subject": "CN=IdentityService.Development",
"AllowInvalid": true
}
},
"Kestrel": {
"Endpoints": {
"Localhost": {
"Address": "127.0.0.1",
"Port": "55555"
},
"LocalhostHttps": {
"Address": "127.0.0.1",
"Port": "43434",
"Certificate": "HTTPS"
}
}
},
"IdentityService": {
"Issuer": "https://localhost/E79CD646-2FB7-4B96-942C-A4063C383C6C/v2.0/",
"SigningCertificates": "IdentityService"
},
"Authentication": {
"IdentityService": {
"ClientId": "C1DC8DD1-111F-46C7-A826-11A9C30F4B55",
"TokenRedirectUrn": "urn:self:aspnet:identity:integrated"
}
},
"ConnectionStrings": {
"DefaultConnection": "DataSource=.\\MyYouTubePlaylistsDemo.db"
},
"Logging": {
"IncludeScopes": false,
"Debug": {
"LogLevel": {
"Default": "Warning"
}
},
"Console": {
"LogLevel": {
"Default": "Warning"
}
}
}
}