Infini-DL360/privoxy: init

This commit is contained in:
Infinidoge 2025-03-16 00:44:14 -04:00
parent a8d302f0d3
commit 8ca1c0249b
Signed by: Infinidoge
SSH key fingerprint: SHA256:GT2StvPQMMfFHyiiFJymQxfTG/z6EWLJ6NWItf5K5sA
2 changed files with 11 additions and 0 deletions

View file

@ -8,6 +8,7 @@
imports = lib.lists.flatten [ imports = lib.lists.flatten [
./hardware-configuration.nix ./hardware-configuration.nix
./filesystems.nix ./filesystems.nix
./privoxy.nix
]; ];
system.stateVersion = "21.11"; system.stateVersion = "21.11";

View file

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