Skip to content

Storage

ɳSelf uses MinIO as its S3-compatible object storage layer, available as an optional service.

CapabilityDescription
S3-compatible APIDrop-in replacement for AWS S3
BucketsCreate and manage storage buckets
Access policiesPublic, private, and custom bucket policies
Presigned URLsTemporary access URLs for uploads/downloads
Console UIWeb UI for bucket management
Terminal window
nself service enable minio
nself build && nself restart

Or set in .env:

MINIO_ENABLED=true
VariableDescriptionDefault
MINIO_ENABLEDEnable MinIO servicefalse
MINIO_ACCESS_KEYRoot access keyAuto-generated
MINIO_SECRET_ACCESS_KEYRoot secret keyAuto-generated
MINIO_DEFAULT_BUCKETDefault bucket namenself
MINIO_PORTInternal port9000

Use the S3 endpoint URL from nself urls. Configure your application with:

Endpoint: https://storage.your-domain.com
Access Key: ${MINIO_ACCESS_KEY}
Secret Key: ${MINIO_SECRET_ACCESS_KEY}
Region: us-east-1 # MinIO ignores region but requires a value

For multi-provider S3 storage (AWS S3, Cloudflare R2, Backblaze B2), see the object-storage pro plugin.


Home | _Sidebar