summary refs log tree commit diff
path: root/nixos/modules/services/networking/vsftpd.nix
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2013-10-20 21:16:12 +0400
committerMichael Raskin <7c6f434c@mail.ru>2013-10-20 21:16:12 +0400
commitf88aa227068da5d9db62fea0c0e0d8fe5f14c364 (patch)
tree7e201d05966f32bd55098d0347198a750c0bd9e6 /nixos/modules/services/networking/vsftpd.nix
parent6e3b2c49e0852ac53625d6b90fb8bc6c253037e6 (diff)
downloadnixpkgs-f88aa227068da5d9db62fea0c0e0d8fe5f14c364.tar
nixpkgs-f88aa227068da5d9db62fea0c0e0d8fe5f14c364.tar.gz
nixpkgs-f88aa227068da5d9db62fea0c0e0d8fe5f14c364.tar.bz2
nixpkgs-f88aa227068da5d9db62fea0c0e0d8fe5f14c364.tar.lz
nixpkgs-f88aa227068da5d9db62fea0c0e0d8fe5f14c364.tar.xz
nixpkgs-f88aa227068da5d9db62fea0c0e0d8fe5f14c364.tar.zst
nixpkgs-f88aa227068da5d9db62fea0c0e0d8fe5f14c364.zip
Allow non-SSL connections to vsftpd by default to let tests not specify certificate
Diffstat (limited to 'nixos/modules/services/networking/vsftpd.nix')
-rw-r--r--nixos/modules/services/networking/vsftpd.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/services/networking/vsftpd.nix b/nixos/modules/services/networking/vsftpd.nix
index 088dbc859ec..d9f1e96b1d2 100644
--- a/nixos/modules/services/networking/vsftpd.nix
+++ b/nixos/modules/services/networking/vsftpd.nix
@@ -60,11 +60,11 @@ let
       names to allow or deny access.
       The default <literal>false</literal> means whitelist/allow.
     '')
-    (yesNoOption "forceLocalLoginsSSL" "force_local_logins_ssl" true ''
+    (yesNoOption "forceLocalLoginsSSL" "force_local_logins_ssl" false ''
     Only applies if <option>sslEnable</option> is true. Non anonymous (local) users
     must use a secure SSL connection to send a password.
     '')
-    (yesNoOption "forceLocalDataSSL" "force_local_data_ssl" true ''
+    (yesNoOption "forceLocalDataSSL" "force_local_data_ssl" false ''
     Only applies if <option>sslEnable</option> is true. Non anonymous (local) users
     must use a secure SSL connection for sending/receiving data on data connection.
     '')