Skip to content

Object storage

S3-compatible object storage. Anything that speaks the S3 API works: the AWS CLI, the AWS SDKs, rclone, restic, Terraform state, and most backup tools.

Endpoint

https://storage.itsh.dev

Use path-style addressing. Virtual-host style (https://<bucket>.storage.itsh.dev) is not supported.

bash
aws --endpoint-url https://storage.itsh.dev s3 ls

Regions

RegionLocation
eu-central-1Germany
eu-central-2Germany
eu-north-1Finland

A bucket lives in the region you pick when you create it, and cannot be moved afterwards. Create a new bucket in the target region and copy the objects.

Bucket names

Bucket names are globally unique across all customers, not just within your account. If a name is taken, someone else already has it, and there is no way to tell whose it is.

Names must be 3 to 63 characters, lowercase, and may contain letters, digits, dots and hyphens. They must start and end with a letter or digit.

Check before you script it

The portal checks availability as you type. If you are automating bucket creation, prefix names with something specific to you, for example acme-backups rather than backups.

Next