Infini-DL360/privoxy: init

This commit is contained in:
Infinidoge 2025-02-23 03:03:33 -05:00
parent 9e168f7b91
commit 1c694ea81d
Signed by: Infinidoge
SSH key fingerprint: SHA256:EMoPe5e2dO0gEvtBb2xkZTz5dkyL0rBmuiGTKG5s96E
2 changed files with 13 additions and 0 deletions

View file

@ -26,6 +26,7 @@
./jellyfin.nix ./jellyfin.nix
./jupyter.nix ./jupyter.nix
./postgresql.nix ./postgresql.nix
./privoxy.nix
./radicale.nix ./radicale.nix
./searx.nix ./searx.nix
./ssh.nix ./ssh.nix

View file

@ -0,0 +1,12 @@
{ ... }:
{
services.privoxy = {
enable = true;
settings = {
listen-address = "100.101.102.124:8118";
};
};
networking.firewall.allowedTCPPorts = [ 8118 ];
}