prowlarr: Use 127.0.0.1 instead of localhost, avoiding ipv6 listening adddress

This commit is contained in:
Giulio De Pasquale 2022-11-11 19:10:38 +01:00
parent 4d8742c087
commit fac8937571

View File

@ -11,7 +11,7 @@ in {
forceSSL = true; forceSSL = true;
enableACME = true; enableACME = true;
locations."/" = { locations."/" = {
proxyPass = "http://localhost:9696"; proxyPass = "http://127.0.0.1:9696";
extraConfig = '' extraConfig = ''
allow 10.0.0.0/24; allow 10.0.0.0/24;
${lib.concatMapStrings (x: "allow ${x};") network.gdevices-wg} ${lib.concatMapStrings (x: "allow ${x};") network.gdevices-wg}