diff --git a/hosts/Infini-DL360/default.nix b/hosts/Infini-DL360/default.nix index bc6dd7b..08572c2 100644 --- a/hosts/Infini-DL360/default.nix +++ b/hosts/Infini-DL360/default.nix @@ -26,6 +26,7 @@ ./jellyfin.nix ./jupyter.nix ./postgresql.nix + ./privoxy.nix ./radicale.nix ./searx.nix ./ssh.nix diff --git a/hosts/Infini-DL360/privoxy.nix b/hosts/Infini-DL360/privoxy.nix new file mode 100644 index 0000000..79557fc --- /dev/null +++ b/hosts/Infini-DL360/privoxy.nix @@ -0,0 +1,12 @@ +{ ... }: + +{ + services.privoxy = { + enable = true; + settings = { + listen-address = "100.101.102.124:8118"; + }; + }; + + networking.firewall.allowedTCPPorts = [ 8118 ]; +}