diff --git a/www/apps/resources/app/architectural-modules/file/s3/page.mdx b/www/apps/resources/app/architectural-modules/file/s3/page.mdx
index 5c25de31c3..6d1a9149e0 100644
--- a/www/apps/resources/app/architectural-modules/file/s3/page.mdx
+++ b/www/apps/resources/app/architectural-modules/file/s3/page.mdx
@@ -1,4 +1,5 @@
import S3BucketAcl from "../../../troubleshooting/_sections/s3/aws-bucket-acl.mdx"
+import CloudflareChecksum from "../../../troubleshooting/_sections/s3/cloudflare-checksum.mdx"
import { Table, Tabs, TabsList, TabsContent, TabsContentWrapper, TabsTrigger, DetailsList } from "docs-ui"
@@ -20,6 +21,7 @@ The S3 File Module Provider integrates Amazon S3 and services following a compat
MinIO
DigitalOcean Spaces
Supabase S3 Storage
+ Cloudflare R2
@@ -46,9 +48,13 @@ The S3 File Module Provider integrates Amazon S3 and services following a compat
- [Install MinIO](https://min.io/docs/minio/linux/index.html).
- Change port to `9001` using the [console address](https://min.io/docs/minio/linux/reference/minio-server/minio-server.html#minio.server.-console-address) and [address](https://min.io/docs/minio/linux/reference/minio-server/minio-server.html#minio.server.-address) CLI options.
- - Create [MinIO access and secret access key](https://min.io/docs/minio/linux/administration/console/security-and-access.html#id1).
- - Create a [MinIO bucket](https://min.io/docs/minio/linux/administration/console/managing-objects.html#creating-buckets) with public access policy:
- - Go to the bucket's dashboard.
+ - Create MinIO access and secret access key:
+ - Go to User -> Access Keys
+ - Click on the Create Access Keys button.
+ - Click on the Create button.
+ - Copy the keys of the pop-up. Make sure to copy the secret key as it won't be shown again.
+ - Create a [MinIO bucket](https://min.io/docs/minio/linux/administration/console/managing-objects.html#creating-buckets) with public access policy. To add the policy:
+ - Go to the bucket's dashboard from Administrator -> Buckets.
- Under the Summary section, click on the pencil icon next to Access Policy.
- In the pop-up, choose Custom from the dropdown.
- In the editor, enter the following:
@@ -97,7 +103,7 @@ The S3 File Module Provider integrates Amazon S3 and services following a compat
4. Click ALL for "Allowed Operations", click the "Review" button, then the "Save policy" button.
-
+
1. Create a [Cloudflare account](https://dash.cloudflare.com/sign-up).
2. Set up your R2 bucket:
- Navigate to R2 Object Storage in your dashboard. You may need to provide your credit-card information.
@@ -169,6 +175,37 @@ module.exports = {
}
```
+### Additional Configuration for MinIO and Supabase
+
+If you're using MinIO or Supabase, set `forcePathStyle` to `true` in the `additional_client_config` object.
+
+For example:
+
+```ts title="medusa-config.ts"
+module.exports = defineConfig({
+ // ...
+ modules: [
+ {
+ resolve: "@medusajs/medusa/file",
+ options: {
+ providers: [
+ {
+ resolve: "@medusajs/medusa/file-s3",
+ id: "s3",
+ options: {
+ // ...
+ additional_client_config: {
+ forcePathStyle: true,
+ },
+ },
+ },
+ ],
+ },
+ },
+ ],
+})
+```
+
### S3 File Module Options
@@ -191,7 +228,7 @@ module.exports = {
The base URL to upload files to.
- For AWS S3, the endpoint is of the format `https://{bucket}.s3.{region}.amazonaws.com`
- - For MinIO, it's the URL to the MinIO server with the bucket's name. For example, `https://{server-domain}/{bucket}`.
+ - For MinIO, it's the URL to the MinIO server with the bucket's name. For example, `https://{server-domain}/{bucket}`. Locally, it may be something like `http://192.168.0.123:9001/{bucket}`.
- For DigitalOcean Spaces, it's either the Origin Endpoint or the CDN endpoint of your Spaces Object Storage bucket.
- for Supabase, it's `https://{uniqueID}.supabase.co/storage/v1/object/public/{bucket}`. You can retrieve the `uniqueID` from [Storage Settings](https://supabase.com/docs/guides/storage/s3/authentication?queryGroups=language&language=javascript#s3-access-keys) page in the Endpoint URL.
- For Cloudflare R2, it's `Public R2.dev Bucket URL`.
@@ -286,7 +323,7 @@ module.exports = {
The URL to the AWS S3 (or compatible S3 API) server.
- For AWS S3, the endpoint is of the format `https://s3.{region}.amazonaws.com`
- - For MinIO, it's the URL to the MinIO server.
+ - For MinIO, it's the URL to the MinIO server. For example, locally, it may be something like `http://192.168.0.123:9001`.
- For DigitalOcean Spaces, it's the Spaces Origin Endpoint of the format `https://{region}.digitaloceanspaces.com`.
- For Supabase, it's the Endpoint URL in the [Storage Settings](https://supabase.com/docs/guides/storage/s3/authentication?queryGroups=language&language=javascript#s3-access-keys).
- For Cloudflare, it's `https://{your-account-id}.r2.cloudflarestorage.com`.
@@ -371,36 +408,6 @@ module.exports = {
-## Additional Configuration for MinIO and Supabase
-
-If you're using MinIO or Supabase, set `forcePathStyle` to `true` in the `additional_client_config` object.
-
-For example:
-
-```ts title="medusa-config.ts"
-module.exports = defineConfig({
- // ...
- modules: [
- {
- resolve: "@medusajs/medusa/file",
- options: {
- providers: [
- {
- resolve: "@medusajs/medusa/file-s3",
- id: "s3",
- options: {
- // ...
- additional_client_config: {
- forcePathStyle: true,
- },
- },
- },
- ],
- },
- },
- ],
-})
-```
---
@@ -411,6 +418,10 @@ module.exports = defineConfig({
{
title: "AWS: The bucket does not allow ACLs (Enabling public access to bucket)",
content:
+ },
+ {
+ title: "Cloudflare: Checksum error",
+ content:
}
]}
/>
diff --git a/www/apps/resources/app/troubleshooting/_sections/s3/cloudflare-checksum.mdx b/www/apps/resources/app/troubleshooting/_sections/s3/cloudflare-checksum.mdx
new file mode 100644
index 0000000000..f619817b78
--- /dev/null
+++ b/www/apps/resources/app/troubleshooting/_sections/s3/cloudflare-checksum.mdx
@@ -0,0 +1,21 @@
+If you're using the [S3 File Module Provider](../../../architectural-modules/file/s3/page.mdx) to store files in Cloudflare and you get a checksum error similar to the following:
+
+```bash
+Header 'x-amz-checksum-crc32' with value '0wpgCA==' not implemented
+```
+
+This is due to a recent update in the AWS SDK client that sets the ChecksumAlgorithm by default, which Cloudflare doesn't support. To resolve this issue, add in your `package.json` the following resolution for the `@aws-sdk/client-s3` package:
+
+```json
+{
+ "resolutions": {
+ "@aws-sdk/client-s3": "3.726.1"
+ }
+}
+```
+
+The version must be less than `3.729.0`. After adding the resolution, install the dependencies again:
+
+```bash npm2yarn
+npm install
+```
diff --git a/www/apps/resources/app/troubleshooting/s3/page.mdx b/www/apps/resources/app/troubleshooting/s3/page.mdx
index f56e6df13b..ce969c1e18 100644
--- a/www/apps/resources/app/troubleshooting/s3/page.mdx
+++ b/www/apps/resources/app/troubleshooting/s3/page.mdx
@@ -1,4 +1,5 @@
import S3BucketAcl from "../_sections/s3/aws-bucket-acl.mdx"
+import CloudflareChecksum from "../_sections/s3/cloudflare-checksum.mdx"
export const metadata = {
title: `S3 Module Provider Errors`,
@@ -9,3 +10,9 @@ export const metadata = {
## AWS: The bucket does not allow ACLs
+
+---
+
+## Cloudflare: Checksum error
+
+
\ No newline at end of file
diff --git a/www/apps/resources/generated/edit-dates.mjs b/www/apps/resources/generated/edit-dates.mjs
index 96eac89584..4f316d317a 100644
--- a/www/apps/resources/generated/edit-dates.mjs
+++ b/www/apps/resources/generated/edit-dates.mjs
@@ -187,7 +187,7 @@ export const generatedEditDates = {
"app/troubleshooting/errors-after-upgrading/page.mdx": "2024-07-11T10:29:13+03:00",
"app/troubleshooting/errors-installing-cli/page.mdx": "2024-05-03T17:36:38+03:00",
"app/troubleshooting/general-errors/page.mdx": "2024-05-03T17:36:38+03:00",
- "app/troubleshooting/s3/page.mdx": "2024-08-06T09:59:46+03:00",
+ "app/troubleshooting/s3/page.mdx": "2025-01-24T13:47:24.994Z",
"app/troubleshooting/page.mdx": "2024-07-18T08:57:11+02:00",
"app/usage/page.mdx": "2024-05-13T18:55:11+03:00",
"app/page.mdx": "2025-01-09T11:40:57.826Z",
@@ -204,7 +204,7 @@ export const generatedEditDates = {
"app/architectural-modules/workflow-engine/page.mdx": "2025-01-08T12:16:04.157Z",
"app/_events-reference/page.mdx": "2024-07-03T19:27:13+03:00",
"app/architectural-modules/cache/page.mdx": "2025-01-08T12:14:37.925Z",
- "app/architectural-modules/file/s3/page.mdx": "2024-10-15T12:51:14.315Z",
+ "app/architectural-modules/file/s3/page.mdx": "2025-01-24T13:49:01.104Z",
"app/commerce-modules/api-key/_events/page.mdx": "2024-07-03T19:27:13+03:00",
"app/commerce-modules/api-key/_events/_events-table/page.mdx": "2024-07-03T19:27:13+03:00",
"app/architectural-modules/cache/redis/page.mdx": "2024-10-15T12:50:01.730Z",
diff --git a/www/apps/resources/generated/files-map.mjs b/www/apps/resources/generated/files-map.mjs
index 767ed11d6b..3354447b28 100644
--- a/www/apps/resources/generated/files-map.mjs
+++ b/www/apps/resources/generated/files-map.mjs
@@ -6979,6 +6979,38 @@ export const filesMap = [
"filePath": "/www/apps/resources/references/core_flows/interfaces/core_flows.BatchInventoryItemLevelsWorkflowInput/page.mdx",
"pathname": "/references/core_flows/interfaces/core_flows.BatchInventoryItemLevelsWorkflowInput"
},
+ {
+ "filePath": "/www/apps/resources/references/core_flows/interfaces/core_flows.BatchInventoryItemLevelsWorkflowOutput/page.mdx",
+ "pathname": "/references/core_flows/interfaces/core_flows.BatchInventoryItemLevelsWorkflowOutput"
+ },
+ {
+ "filePath": "/www/apps/resources/references/core_flows/interfaces/core_flows.BatchProductVariantsWorkflowInput/page.mdx",
+ "pathname": "/references/core_flows/interfaces/core_flows.BatchProductVariantsWorkflowInput"
+ },
+ {
+ "filePath": "/www/apps/resources/references/core_flows/interfaces/core_flows.BatchProductVariantsWorkflowOutput/page.mdx",
+ "pathname": "/references/core_flows/interfaces/core_flows.BatchProductVariantsWorkflowOutput"
+ },
+ {
+ "filePath": "/www/apps/resources/references/core_flows/interfaces/core_flows.BatchProductWorkflowInput/page.mdx",
+ "pathname": "/references/core_flows/interfaces/core_flows.BatchProductWorkflowInput"
+ },
+ {
+ "filePath": "/www/apps/resources/references/core_flows/interfaces/core_flows.BatchPromotionRulesWorkflowInput/page.mdx",
+ "pathname": "/references/core_flows/interfaces/core_flows.BatchPromotionRulesWorkflowInput"
+ },
+ {
+ "filePath": "/www/apps/resources/references/core_flows/interfaces/core_flows.BatchPromotionRulesWorkflowOutput/page.mdx",
+ "pathname": "/references/core_flows/interfaces/core_flows.BatchPromotionRulesWorkflowOutput"
+ },
+ {
+ "filePath": "/www/apps/resources/references/core_flows/interfaces/core_flows.BatchShippingOptionRulesInput/page.mdx",
+ "pathname": "/references/core_flows/interfaces/core_flows.BatchShippingOptionRulesInput"
+ },
+ {
+ "filePath": "/www/apps/resources/references/core_flows/interfaces/core_flows.BatchShippingOptionRulesOutput/page.mdx",
+ "pathname": "/references/core_flows/interfaces/core_flows.BatchShippingOptionRulesOutput"
+ },
{
"filePath": "/www/apps/resources/references/core_flows/interfaces/core_flows.BulkCreateDeleteLevelsWorkflowInput/page.mdx",
"pathname": "/references/core_flows/interfaces/core_flows.BulkCreateDeleteLevelsWorkflowInput"
@@ -7283,42 +7315,10 @@ export const filesMap = [
"filePath": "/www/apps/resources/references/core_flows/types/core_flows.AuthorizePaymentSessionStepInput/page.mdx",
"pathname": "/references/core_flows/types/core_flows.AuthorizePaymentSessionStepInput"
},
- {
- "filePath": "/www/apps/resources/references/core_flows/types/core_flows.BatchInventoryItemLevelsWorkflowOutput/page.mdx",
- "pathname": "/references/core_flows/types/core_flows.BatchInventoryItemLevelsWorkflowOutput"
- },
{
"filePath": "/www/apps/resources/references/core_flows/types/core_flows.BatchPriceListPricesWorkflowInput/page.mdx",
"pathname": "/references/core_flows/types/core_flows.BatchPriceListPricesWorkflowInput"
},
- {
- "filePath": "/www/apps/resources/references/core_flows/types/core_flows.BatchProductVariantsWorkflowInput/page.mdx",
- "pathname": "/references/core_flows/types/core_flows.BatchProductVariantsWorkflowInput"
- },
- {
- "filePath": "/www/apps/resources/references/core_flows/types/core_flows.BatchProductVariantsWorkflowOutput/page.mdx",
- "pathname": "/references/core_flows/types/core_flows.BatchProductVariantsWorkflowOutput"
- },
- {
- "filePath": "/www/apps/resources/references/core_flows/types/core_flows.BatchProductWorkflowInput/page.mdx",
- "pathname": "/references/core_flows/types/core_flows.BatchProductWorkflowInput"
- },
- {
- "filePath": "/www/apps/resources/references/core_flows/types/core_flows.BatchPromotionRulesWorkflowInput/page.mdx",
- "pathname": "/references/core_flows/types/core_flows.BatchPromotionRulesWorkflowInput"
- },
- {
- "filePath": "/www/apps/resources/references/core_flows/types/core_flows.BatchPromotionRulesWorkflowOutput/page.mdx",
- "pathname": "/references/core_flows/types/core_flows.BatchPromotionRulesWorkflowOutput"
- },
- {
- "filePath": "/www/apps/resources/references/core_flows/types/core_flows.BatchShippingOptionRulesInput/page.mdx",
- "pathname": "/references/core_flows/types/core_flows.BatchShippingOptionRulesInput"
- },
- {
- "filePath": "/www/apps/resources/references/core_flows/types/core_flows.BatchShippingOptionRulesOutput/page.mdx",
- "pathname": "/references/core_flows/types/core_flows.BatchShippingOptionRulesOutput"
- },
{
"filePath": "/www/apps/resources/references/core_flows/types/core_flows.BeginClaimOrderValidationStepInput/page.mdx",
"pathname": "/references/core_flows/types/core_flows.BeginClaimOrderValidationStepInput"