Skip to content

Elixir SFTP daemon with customisable user directories

Notifications You must be signed in to change notification settings

calltelemetry/exsftpd

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Exsftpd

Build Status

SFTP server which do not allow shell access and has a separate root directory for each user.

Installation

The package can be installed by adding exsftpd to your list of dependencies in mix.exs:

def deps do
  [
    {:exsftpd, "~> 0.9.0"}
  ]
end

Next add a configuration entry for :exsftpd, Exsftpd.Server:

config :exsftpd, Exsftpd.Server,
  port: 2220,
  #root dir for <someuser>: /tmp/users/files/<someuser>
  user_root_dir: "/tmp/users/files",
  #look for authorized_keys at /tmp/users/<username>/.ssh
  user_auth_dir: "/tmp/users",
  #Where to look for ssh host keys
  system_dir: "/tmp/ssh",
  event_handler: fn(event) -> IO.puts("Event: #{inspect event} ") end,
  modify_algorithms: []


Documentation can be generated with ExDoc and published on HexDocs. Once published, the docs can be found at https://hexdocs.pm/exsftpd.

About

Elixir SFTP daemon with customisable user directories

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Elixir 100.0%