Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

FTPS (TLS/SSL) from Ruby on Rails App

I have an FTP server which only accepts connections through running FTPS (explicit FTP over TLS). I need to be able to connect to this using a Ruby on Rails app.

Does anybody know of a method to do this? I have tried the Net::FTP library but this does not appear to support FTPS connections.

like image 793
Craig Wanstall Avatar asked Oct 26 '10 13:10

Craig Wanstall


1 Answers

How about using Net::FTPTLS ?

like image 92
PetrosB Avatar answered Sep 28 '22 05:09

PetrosB