Files
server/nix/modules/default/cs/default-appsettings-json.nix
T
2026-02-06 05:21:31 +01:00

17 lines
437 B
Nix

{
Logging.LogLevel = {
Default = "Information";
"Microsoft.AspNetCore" = "Trace";
"Microsoft.AspNetCore.Mvc" = "Warning";
"Microsoft.AspNetCore.HostFiltering" = "Warning";
"Microsoft.AspNetCore.Cors" = "Warning";
"Microsoft.EntityFrameworkCore.Database.Command" = "Information";
};
Spacebar = {
Authentication = {
PrivateKeyPath = "./jwt.key";
PublicKeyPath = "./jwt.key.pub";
};
};
}