SFTP server in Erlang

Hi guys,

I’m looking for an “SFTP Server” implementation in Erlang.

My requirements are very simple:

  1. every user has access to one (and only one) directory protected with a login/password
  2. the directory can be used to upload and download PDF file

I’m expecting a maximum of 80 users, and around 10 PDFs per day in average.

Many thanks
Z.

2 Likes

You can’t use the built-in one? I use it all the time for this sort of thing. Erlang -- ssh_sftpd

5 Likes

@WarpEngineer This is great. Didn’t even know Erlang has a default one.

Would you mind sharing an example of how to use it here?
Many thanks

1 Like

There’s an example already in the Erlang/OTP documentation: Erlang -- Getting Started

3 Likes

It worked. Thanks guys

2 Likes