> For the complete documentation index, see [llms.txt](https://gcl.gitbook.io/orchard-core-basics-companion-ocbc/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://gcl.gitbook.io/orchard-core-basics-companion-ocbc/aws-integration/s3.md).

# S3

To enable Amazon S3 integration, we need to enable the feature `OrchardCore.Media.AmazonS3`.

In the `appsettings.json`, we need to provide the configuration of S3 bucket, for example a testing bucket "chunlin-orchardcore-test".

```json
{
  "Logging": {
    ...
  },
  "OrchardCore": {
    "OrchardCore_Media_AmazonS3": {
      "Region": "eu-west-1",
      "BasePath": "/media",
      "CreateBucket": false,
      "BucketName": "chunlin-orchardcore-test"
    }
  }
}
```

We should see our files in Media get uploaded to the S3 bucket.
