Skip to content

Latest commit

 

History

History
22 lines (20 loc) · 434 Bytes

File metadata and controls

22 lines (20 loc) · 434 Bytes
aliases author date tags title
/2007/02/08/enabling-ssl-in-proftpd/
Major Hayden
2007-02-08 15:28:18 -0800
ftp
plesk
Enabling SSL in ProFTPD

If you need to enable SSL in ProFTPD, try this out:

<IfModule mod_tls.c>
    TLSEngine on
    TLSRequired off
    TLSRSACertificateFile /etc/httpd/conf/ssl.crt/server.crt
    TLSRSACertificateKeyFile /etc/httpd/conf/ssl.key/server.key
    TLSVerifyClient off
</IfModule>