Files
server/nix/modules/default/cs/default-appsettings-json.nix
2026-02-16 04:10:18 +01:00

20 lines
509 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";
};
UnixSocketReplication = {
SocketDir = "/run/spacebar";
};
};
}