-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappsettings.json
More file actions
32 lines (32 loc) · 809 Bytes
/
appsettings.json
File metadata and controls
32 lines (32 loc) · 809 Bytes
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
{
"ConnectionStrings": {
"DefaultConnection": "Server=DESKTOP-GVA6N7B\\SQLEXPRESS;Database=AuthDb;Trusted_Connection=true;TrustServerCertificate=true"
},
"Authentication": {
"Google": {
"ClientId": "YOUR_GOOGLE_CLIENT_ID",
"ClientSecret": "YOUR_GOOGLE_SECRET"
},
"Facebook": {
"AppId": "YOUR_FACEBOOK_APP_ID",
"AppSecret": "YOUR_FACEBOOK_SECRET"
},
"GitHub": {
"ClientId": "YOUR_GITHUB_CLIENT_ID",
"ClientSecret": "YOUR_GITHUB_SECRET"
}
},
"Jwt": {
"Key": "THIS_IS_SUPER_SECRET_KEY_12345",
"Issuer": "AuthPracticeAPI",
"Audience": "AuthPracticeAPI",
"DurationInMinutes": 60
},
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*"
}