March 30, 2004

ProFTPd and mod_tls

Got ProFTPd working with the AUTH TLS/mod_tls plugin again, by following directions at this howto.

Details are essentially:

<IfModule mod_tls.c>
  TLSEngine on
  TLSLog /var/log/proftpd/tls.log
  TLSProtocol TLSv1
  TLSRSACertificateFile /etc/ssl/certs/ftp.earlham.edu.pem
  TLSRSACertificateKeyFile /etc/ssl/certs/ftp.earlham.edu.key
  TLSCipherSuite ALL
  TLSRequired off
  TLSVerifyClient off
</IfModule>
Posted by Rowan Littell at March 30, 2004 08:39 AM