mirror of
https://github.com/spacebarchat/server.git
synced 2026-04-07 23:35:44 +00:00
20 lines
509 B
Nix
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";
|
|
};
|
|
};
|
|
}
|