🚀 Simple static files hosting server, with FTP 💾 as a backend.
- ✅ host your files, and explore them in the browser 💻
- ✅ cache in application memory, you don't have to reach the FTP server each time 🏄♀️
- ✅ small docker image (under 10Mb) 🗃️
- ✅ super fast app due to golang usage 🏎️
- Place your static files into FTP server.
- Start app with docker:
docker run -p 80:80 \
-e FTP_HOSTNAME=${your-value} \
-e FTP_USERNAME=${your-value} \
-e FTP_PASSWORD=${your-value} \
ghcr.io/tobiasz-gleba/ftp-to-web-static-hosting
FTP_HOSTNAME=localhost
FTP_USERNAME=admin
FTP_PASSWORD=admin
FTP_PORT=21
FTP_BASEDIR="/public"
CACHE_TTL_MINUTES=30
CACHE_SIZE_MB=300