Merge pull request #455 from fulax/patch-1
proftpd.conf: Default to modern TLS protocols
This commit is contained in:
commit
a85ccd043b
|
@ -124,7 +124,11 @@ RLimitChroot off
|
||||||
<IfModule mod_tls.c>
|
<IfModule mod_tls.c>
|
||||||
TLSEngine on
|
TLSEngine on
|
||||||
TLSLog /var/log/proftpd/tls.log
|
TLSLog /var/log/proftpd/tls.log
|
||||||
TLSProtocol TLSv1
|
# TLSv1.3 has bugs before ProFTPd 1.3.6d and 1.3.7
|
||||||
|
#TLSProtocol TLSv1.2 TLSv1.3
|
||||||
|
TLSProtocol TLSv1.2
|
||||||
|
# For old clients
|
||||||
|
#TLSProtocol TLSv1 TLSv1.1 TLSv1.2
|
||||||
|
|
||||||
# Are clients required to use FTP over TLS when talking to this server?
|
# Are clients required to use FTP over TLS when talking to this server?
|
||||||
TLSRequired off
|
TLSRequired off
|
||||||
|
|
Loading…
Reference in New Issue