https://levelup.gitconnected.com/how-to-sign-in-with-google-in-angular-and-use-jwt-based-net-core-api-authentication-rsa-6635719fb86c
33 lines
718 B
JSON
33 lines
718 B
JSON
{
|
|
"Logging": {
|
|
"LogLevel": {
|
|
"Default": "Information",
|
|
"Microsoft.AspNetCore": "Warning"
|
|
}
|
|
},
|
|
"AllowedHosts": "*",
|
|
"ConnectionStrings": {
|
|
"DefaultConnection": "host=localhost;database=auto.bus;user id=postgres;password=postgres;Include Error Detail = true"
|
|
},
|
|
"ApplicationName": "auto.bus",
|
|
"SmtpCredentials": {
|
|
"Host": "",
|
|
"Port": "",
|
|
"User": "",
|
|
"Password": ""
|
|
},
|
|
"Authentication": {
|
|
"Google": {
|
|
"ClientId": "",
|
|
"ClientSecret": ""
|
|
}
|
|
},
|
|
"Jwt": {
|
|
"Key": "Secret which will never be exposed",
|
|
"Audience": "Application URL",
|
|
"Issuer": "Application URL",
|
|
"ValidityInMinutes": 60,
|
|
"RefreshTokenValidityInDays": 10
|
|
}
|
|
}
|