HOME

〔FTPS〕にてサーバーへ接続頂く場合、以下の手順が必要です。

1.サーバーへrootにてSSH接続を行って頂きます。

2) /etc/proftpd.conf に以下を追記ください。

<IfModule mod_tls.c>
        TLSEngine on
        #TLSLog /var/log/tls.log
        TLSProtocol SSLv23
        # Are clients required to use FTP over TLS?
        TLSRequired off
        # Server's certificate
        TLSRSACertificateFile /usr/local/psa/admin/conf/httpsd.pem
        TLSRSACertificateKeyFile /usr/local/psa/admin/conf/httpsd.pem
        # Authenticate clients that want to use FTP over TLS?
        TLSVerifyClient off
        # Allow SSL/TLS renegotiations when the client requests them, but
        # do not force the renegotations.  Some clients do not support
        # SSL/TLS renegotiations; when mod_tls forces a renegotiation, these
        # clients will close the data connection, or there will be a timeout
        # on an idle data connection.
        TLSRenegotiate required off
        TLSOptions NoSessionReuseRequired
</IfModule>

以上で、FTP接続と同じ様にFTPSでの接続が可能となります。

追加情報