From 14b0d518945f109cb4327b14ef084420dc39ed8e Mon Sep 17 00:00:00 2001 From: Nelson Cabete <39102261+ncabete@users.noreply.github.com> Date: Wed, 10 Dec 2025 01:56:05 +0000 Subject: [PATCH] Update docs to reference disable_https instead of disableSsl on Storage Configuration page (#1124) Co-authored-by: Nelson Cabete --- docs/en/configure/storage.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/en/configure/storage.md b/docs/en/configure/storage.md index 8268378d..d024cd16 100644 --- a/docs/en/configure/storage.md +++ b/docs/en/configure/storage.md @@ -30,19 +30,19 @@ the bucket name in the connection string. ### S3-Compatible Storage You can also use S3-compatible storage by setting the `HBOX_STORAGE_CONN_STRING` to -`s3://my-bucket?awssdk=v2&endpoint=http://my-s3-compatible-endpoint.tld&disableSSL=true&s3ForcePathStyle=true`. +`s3://my-bucket?awssdk=v2&endpoint=http://my-s3-compatible-endpoint.tld&disable_https=true&s3ForcePathStyle=true`. This allows you to connect to S3-compatible services like MinIO, DigitalOcean Spaces, or any other service that supports -the S3 API. Configure the `disableSSL`, `s3ForcePathStyle`, and `endpoint` parameters as needed for your specific +the S3 API. Configure the `disable_https`, `s3ForcePathStyle`, and `endpoint` parameters as needed for your specific service. #### Tested S3-Compatible Storage | Service | Working | Connection String | |---------------------|---------|--------------------------------------------------------------------------------------------------------------------------| -| MinIO | Yes | `s3://my-bucket?awssdk=v2&endpoint=http://minio:9000&disableSSL=true&s3ForcePathStyle=true` | -| Cloudflare R2 | Yes | `s3://my-bucket?awssdk=v2&endpoint=https://.r2.cloudflarestorage.com&disableSSL=false&s3ForcePathStyle=true` | -| Backblaze B2 | Yes | `s3://my-bucket?awssdk=v2&endpoint=https://s3.us-west-004.backblazeb2.com&disableSSL=false&s3ForcePathStyle=true` | +| MinIO | Yes | `s3://my-bucket?awssdk=v2&endpoint=http://minio:9000&disable_https=true&s3ForcePathStyle=true` | +| Cloudflare R2 | Yes | `s3://my-bucket?awssdk=v2&endpoint=https://.r2.cloudflarestorage.com&disable_https=false&s3ForcePathStyle=true` | +| Backblaze B2 | Yes | `s3://my-bucket?awssdk=v2&endpoint=https://s3.us-west-004.backblazeb2.com&disable_https=false&s3ForcePathStyle=true` | ::: info If you know of any other S3-compatible storage that works with Homebox, please let us know or create a pull request to update the table. @@ -57,7 +57,7 @@ Additionally, the parameters in the URL can be used to configure specific S3 set features.) - `endpoint`: The custom endpoint for S3-compatible storage services. - `s3ForcePathStyle`: Whether to force path-style access (set to `true` or `false`). -- `disableSSL`: Whether to disable SSL (set to `true` or `false`). +- `disable_https`: Whether to disable SSL (set to `true` or `false`). - `sseType`: The server-side encryption type (e.g., `AES256` or `aws:kms` or `aws:kms:dsse`). - `kmskeyid`: The KMS key ID for server-side encryption. - `fips`: Whether to use FIPS endpoints (set to `true` or `false`).