ちょっとしたことで、ftpd欲しいと思ったりしたので、サービスを立てた。
インストールはいつもの通り、aptでいれちゃいます。
$ sudo apt-install proftpd
/etc/proftpd/ssl.conf
TLSRSACertificateFile /etc/letsencrypt/live/[domain name]/cert.pem TLSRSACertificateKeyFile /etc/letsencrypt/live/[domain name]/privkey.pem TLSCACertificateFile /etc/letsencrypt/live/[domain name]/chain.pem
/etc/proftpd/modules.conf
LoadModule mod_tls.c #コメントを外す [code] お好みで、virtualhostの設定 [code] VRootAlias upload /hpme/ftp/[domain_name]/upload # <VirtualHost ftp.[domain_name]> VRootEngine on VRootServerRoot /hpme/ftp/[domain_name]/ VRootOptions allowSymlinks #DefaultRoot ~ </VirtualHost>