diff options
author | lassulus <git@lassul.us> | 2023-09-07 12:26:31 +0200 |
---|---|---|
committer | lassulus <git@lassul.us> | 2023-09-07 12:40:43 +0200 |
commit | 2e5167de1560ad0d7b8e294c72e1913f694160c2 (patch) | |
tree | b618daa9f125650e9276bae7848f854c48d6c95e /lass/2configs/privoxy-retiolum.nix | |
parent | 6a3a423dad19264c0c42821c7676e85ecc122d21 (diff) |
lass: migrate awayriplass
Diffstat (limited to 'lass/2configs/privoxy-retiolum.nix')
-rw-r--r-- | lass/2configs/privoxy-retiolum.nix | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/lass/2configs/privoxy-retiolum.nix b/lass/2configs/privoxy-retiolum.nix deleted file mode 100644 index 352a6d3d8..000000000 --- a/lass/2configs/privoxy-retiolum.nix +++ /dev/null @@ -1,21 +0,0 @@ -{ config, lib, ... }: - -let - r_ip = config.krebs.build.host.nets.retiolum.ip4.addr; - -in { - imports = [ - ./privoxy.nix - ]; - - services.privoxy.listenAddress = "${r_ip}:8118"; - - krebs.iptables = { - tables = { - filter.INPUT.rules = [ - { predicate = "-i retiolum -p tcp --dport 8118"; target = "ACCEPT"; } - { predicate = "-i dns0 -p tcp --dport 8118"; target = "ACCEPT"; } - ]; - }; - }; -} |