summary refs log tree commit diff
path: root/nix/modules/default/cs/default-appsettings-json.nix
blob: 1ed1c28c0b36d22a663a19d068c899a47a86bda9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  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";
    };
  };
}