mirror of
https://github.com/pgsty/minio.git
synced 2026-07-18 19:50:23 +03:00
f48dbe777d
Update the STS, security, select, and Docker documentation to reflect the recent hardening work, including LDAP STS throttling details, OIDC JWT verification changes, and the new pgsty-specific security policy and advisory index. Rewrite repository and raw-document links that still pointed at minio/minio so the docs consistently reference pgsty/minio instead. The core idea is to keep the documentation aligned with the fork's actual security behavior, ownership, and upgrade guidance without mixing in unrelated code changes.
Bucket Quota Configuration Quickstart Guide

Buckets can be configured to have Hard quota - it disallows writes to the bucket after configured quota limit is reached.
Prerequisites
- Install MinIO - MinIO Quickstart Guide.
- Use
mcwith MinIO Server
Set bucket quota configuration
Set a hard quota of 1GB for a bucket mybucket on MinIO object storage
mc admin bucket quota myminio/mybucket --hard 1gb
Verify the quota configured on mybucket on MinIO
mc admin bucket quota myminio/mybucket
Clear bucket quota configuration for mybucket on MinIO
mc admin bucket quota myminio/mybucket --clear
