diff options
author | Griffin Smith <grfn@gws.fyi> | 2020-07-28T00·41-0400 |
---|---|---|
committer | glittershark <grfn@gws.fyi> | 2020-07-28T00·46+0000 |
commit | 9ae4ac8f50aa9e23073d8ab1a962d750360a6cbe (patch) | |
tree | e688a10173f7512454dc2778f5c1c5a60b69881d /ops | |
parent | ec349328e034f66e67a4ec27b9155b74b06ba27c (diff) |
fix(ops/nixos): allow connections on hostnossl r/1500
This is how panettone is currently connecting, so this needs to be here in order for it to work. Shortly I'll update all of this to use passwords, but for now this gets things up and running again Change-Id: If87f4dbce0800dcbc4f7bf10e88f3e591410b416 Reviewed-on: https://cl.tvl.fyi/c/depot/+/1488 Tested-by: BuildkiteCI Reviewed-by: tazjin <mail@tazj.in>
Diffstat (limited to 'ops')
-rw-r--r-- | ops/nixos/whitby/default.nix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ops/nixos/whitby/default.nix b/ops/nixos/whitby/default.nix index 075e9505dcee..ad631e7959b3 100644 --- a/ops/nixos/whitby/default.nix +++ b/ops/nixos/whitby/default.nix @@ -231,6 +231,7 @@ in lib.fix(self: { authentication = lib.mkOverride 10 '' local all all trust host all all ::1/128 trust + hostnossl all all ::1/128 trust ''; ensureDatabases = [ |