Skip to content

bolcom/unFTP

This branch is 3 commits ahead of, 11 commits behind master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

f0e856b · Dec 14, 2024
Jul 10, 2024
Dec 14, 2024
Dec 14, 2024
Jun 9, 2023
Dec 14, 2024
Jul 10, 2020
Oct 13, 2022
Feb 4, 2022
Dec 14, 2024
Apr 2, 2021
Oct 25, 2019
Dec 14, 2024
Dec 14, 2024
Oct 25, 2019
Dec 14, 2024
Dec 14, 2024
Jun 20, 2024
Jan 25, 2023
Jan 25, 2023
Mar 26, 2021
Feb 13, 2021
Jun 9, 2023
Jun 26, 2024
Oct 9, 2020
Sep 29, 2019
Oct 13, 2022
Oct 9, 2020

Repository files navigation

unFTP

Crate Version Build Status Docker Pulls Follow on Telegram

When you need to FTP, but don't want to.

logo

Website | Docs | libunftp

unFTP is an FTP(S) server written in Rust and built on top of libunftp and the Tokio asynchronous run-time. It is unlike your normal FTP server in that it provides:

  • Configurable Authentication (e.g. Anonymous, PAM or a JSON file).
  • Configurable storage back-ends (e.g. GCS or filesystem)
  • An HTTP server with health endpoints for use for example in Kubernetes for readiness and liveness probes.
  • Integration with Prometheus for monitoring.
  • A proxy protocol mode for use behind proxies like HA Proxy and Nginx.
  • Structured logging and the ability to ship logs to a Redis instance.

With unFTP, you can present RFC compliant FTP(S) to the outside world while freeing yourself to use modern APIs and techniques on the inside of your perimeter.

Installation and Usage

User documentation are available on our website unftp.rs

Docker image

The project contains templated Dockerfiles . To get a list of available commands, run:

make help

We offer 3 different options for building an unFTP docker image:

  • scratch: builds the binary in rust:slim and deploys in a FROM scratch image. The unFTP binary is statically linked using musl libc.
  • alpine (default): builds in rust:slim and deploy in alpine. This image is built with musl instead of a full-blown libc. The unFTP binary is statically linked using musl libc.
  • alpine-debug: same images as alpine but using the debug build of unftp and adds tools like lftp and CurlFtpFS while also running as root.
  • alpine-istio: same as alpine but with scuttle installed. For use together with Istio.
  • alpine-istio-debug: same as alpine-debug but with the additions of alpine-istio.

To build the alpine docker image:

make docker-image-alpine

Alternatively you can download pre-made images from docker hub.

Enabling tokio-console

You can use tokio-console to analyze async tasks running in unFTP. To do this you need to compile a build or run with the tokio_console feature enabled while also enabling the tokio_unstable cfg.

For example:

RUSTFLAGS="--cfg tokio_unstable" cargo build --features tokio_console

or:

RUSTFLAGS="--cfg tokio_unstable" cargo run --features tokio_console -- -vv

unFTP will listen on default port 6669 for connections from tokio-console.

Getting help and staying informed

Support is given on a best effort basis. You are welcome to engage us on the discussions page or create a Github issue.

You can also follow news and talk to us on Telegram

Updating user documentation

Make your edits in docs/

If you want to preview the docs:

License

You're free to use, modify and distribute this software under the terms of the Apache-2.0 license.

See also