From f2f982e04f655d76990318225578ea7b0695817b Mon Sep 17 00:00:00 2001 From: emorino Date: Wed, 4 Jul 2018 17:26:18 +0200 Subject: [PATCH] Modification configuration mode ftps --- HowtoProFTPD.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/HowtoProFTPD.md b/HowtoProFTPD.md index 2f286a14..675bd6ac 100644 --- a/HowtoProFTPD.md +++ b/HowtoProFTPD.md @@ -236,7 +236,7 @@ LoadModule mod_tls.c TLSEngine on -TLSLog /var/log/proftpd/tls.log +TLSLog /var/log/proftpd/ftps.log TLSProtocol TLSv1 TLSRSACertificateFile /etc/ssl/certs/ftp.example.com.crt @@ -254,7 +254,13 @@ TLSVerifyClient on TLSRequired off TLSRenegotiate required off -TLSOptions NoSessionReuseRequired +TLSOptions NoSessionReuseRequired + +RequireValidShell off +Port 990 +AuthUserFile /etc/proftpd/vpasswd + +PassivePorts 61000 62000 ~~~