Files
PlaylistShared/PlaylistShared.Api/appsettings.json

29 lines
887 B
JSON

{
"ConnectionStrings": {
"DefaultConnection": "Server=host.docker.internal;Database=PlaylistShared;User Id=playlist_user;Password=playlist_user123!;TrustServerCertificate=True;MultipleActiveResultSets=true"
},
"Jwt": {
"Key": "your-32-character-secret-key-for-jwt-minimum-length",
"Issuer": "PlaylistShared.Api",
"Audience": "PlaylistShared.Client"
},
"Yandex": {
"ClientId": "0916685f8a3641ca8fc382dbccf77236",
"ClientSecret": "f7398893cd814f8b84b85aeb2a0a6698"
},
"Client": {
"BaseUrl": "https://playlistshare.frigat.duckdns.org"
},
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"Keycloak": {
"Authority": "https://your-keycloak-domain/auth/realms/your-realm",
"ClientId": "playlist-shared-client",
"ClientSecret": "your-secret"
},
"AllowedHosts": "*"
}