Fix electrum after disallowing anything but localhost by adding ipv6 local address

This commit is contained in:
Jonas Nick 2019-04-28 18:54:13 +00:00
parent 7fb1cc1e93
commit 469c1de6a9
No known key found for this signature in database
GPG Key ID: 4861DBF262123605
1 changed files with 3 additions and 1 deletions

View File

@ -24,7 +24,9 @@ in
# node applications apparently rely on memory write execute
node = { MemoryDenyWriteExecute = "false"; };
# Allow tor traffic. Allow takes precedence over Deny.
allowTor = { IPAddressAllow = "127.0.0.1/32"; };
allowTor = {
IPAddressAllow = "127.0.0.1/32 ::1/128";
};
# Allow any traffic
allowAnyIP = { IPAddressAllow = "any"; };