diff --git a/hosts/common/optional/vsftpd.nix b/hosts/common/optional/vsftpd.nix index 6b89e9d..5259cad 100644 --- a/hosts/common/optional/vsftpd.nix +++ b/hosts/common/optional/vsftpd.nix @@ -5,16 +5,16 @@ localUsers = true; }; - networking.firewall.allowedTCPPorts = [21]; - services.vsftpd.extraConfig = '' - pasv_enable=Yes - pasv_min_port=51000 - pasv_max_port=51999 - ''; - networking.firewall.allowedTCPPortRanges = [ - { - from = 51000; - to = 51999; - } - ]; + # networking.firewall.allowedTCPPorts = [21]; + # services.vsftpd.extraConfig = '' + # pasv_enable=Yes + # pasv_min_port=51000 + # pasv_max_port=51999 + # ''; + # networking.firewall.allowedTCPPortRanges = [ + # { + # from = 51000; + # to = 51999; + # } + # ]; }