diff options
author | Alan Pearce | 2020-08-17 13:04:19 +0200 |
---|---|---|
committer | Alan Pearce | 2020-08-24 10:03:16 +0200 |
commit | e957254f13f91e0495459cdeddade917c439f854 (patch) | |
tree | 4f5cf838769e33fbb5a423f1d53325ef5af929b4 /system | |
parent | 455e717f354f5db05580d0b090f7daeaee55bd2c (diff) | |
download | nixfiles-e957254f13f91e0495459cdeddade917c439f854.tar.lz nixfiles-e957254f13f91e0495459cdeddade917c439f854.tar.zst nixfiles-e957254f13f91e0495459cdeddade917c439f854.zip |
Fix local mongo connection issues
Diffstat (limited to 'system')
-rw-r--r-- | system/settings/satoshipay.nix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/system/settings/satoshipay.nix b/system/settings/satoshipay.nix index 3a533ce6..53384e09 100644 --- a/system/settings/satoshipay.nix +++ b/system/settings/satoshipay.nix @@ -26,6 +26,7 @@ services.mongodb = { enable = true; replSetName = "rs0"; + bind_ip = "127.0.0.1"; dbpath = "/tmp/mongodb"; }; systemd.services.mongodb.wantedBy = lib.mkForce []; |