Merge pull request #156685 from schnusch/squid
nixos/squid: add services.squid.proxyAddress
This commit is contained in:
commit
4c999b91a5
1 changed files with 9 additions and 1 deletions
|
@ -81,7 +81,9 @@ let
|
|||
http_access deny all
|
||||
|
||||
# Squid normally listens to port 3128
|
||||
http_port ${toString cfg.proxyPort}
|
||||
http_port ${
|
||||
optionalString (cfg.proxyAddress != null) "${cfg.proxyAddress}:"
|
||||
}${toString cfg.proxyPort}
|
||||
|
||||
# Leave coredumps in the first cache dir
|
||||
coredump_dir /var/cache/squid
|
||||
|
@ -109,6 +111,12 @@ in
|
|||
description = "Whether to run squid web proxy.";
|
||||
};
|
||||
|
||||
proxyAddress = mkOption {
|
||||
type = types.nullOr types.str;
|
||||
default = null;
|
||||
description = "IP address on which squid will listen.";
|
||||
};
|
||||
|
||||
proxyPort = mkOption {
|
||||
type = types.int;
|
||||
default = 3128;
|
||||
|
|
Loading…
Reference in a new issue