add a socks proxy to netbox
This commit is contained in:
parent
29e75e319f
commit
2b2db129b1
|
@ -20,6 +20,7 @@
|
||||||
./photoprism-bridge.nix
|
./photoprism-bridge.nix
|
||||||
./grafana-bridge.nix
|
./grafana-bridge.nix
|
||||||
./prometheus.nix
|
./prometheus.nix
|
||||||
|
./socks.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
nix = {
|
nix = {
|
||||||
|
|
|
@ -0,0 +1,14 @@
|
||||||
|
{ lib, config, pkgs, ... }:
|
||||||
|
{
|
||||||
|
services._3proxy = {
|
||||||
|
enable = true;
|
||||||
|
services = [
|
||||||
|
{
|
||||||
|
type = "socks";
|
||||||
|
auth = [ "none" ];
|
||||||
|
bindAddress = "10.100.0.1";
|
||||||
|
bindPort = 3128;
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue