From 1c694ea81ddfbb0c7f0fb0040bf13c3c130dbb86 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Sun, 23 Feb 2025 03:03:33 -0500 Subject: [PATCH] Infini-DL360/privoxy: init --- hosts/Infini-DL360/default.nix | 1 + hosts/Infini-DL360/privoxy.nix | 12 ++++++++++++ 2 files changed, 13 insertions(+) create mode 100644 hosts/Infini-DL360/privoxy.nix 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 ]; +}