← blobsync

Quickstart

blobsync speaks an S3-style object API over HTTPS under /api/v1. Configure your client with this endpoint and a bucket:

export BLOBSYNC_ENDPOINT="https://nodeblobstore.com/api/v1"
blobsync put ./backup.tar  s3://snapshots/backup.tar
blobsync sync ./assets/    s3://assets/

API

Object operations live under /api/v1/<bucket>/<key> (PUT/GET/DELETE), authenticated with an AWS SigV4 Authorization header. An unsigned request returns 403 AccessDenied. Buckets are created on first write.

Health

GET /health returns {"status":"ok"} for liveness probes.

Notes

Single-node deployment. TLS terminates at this host.