Skip to content

Commit ef77dec

Browse files
committed
Update S3 storage config placeholders from square to angle brackets
1 parent 18f0721 commit ef77dec

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

src/routes/integrations/storage-s3/+page.markdoc

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ isPartner: true
88
isNew: false
99
cover: /images/integrations/storage-s3/cover.png
1010
category: storage
11-
product:
11+
product:
1212
avatar: '/images/integrations/avatars/aws.png'
1313
vendor: AWS
1414
description: 'Amazon S3 is an object storage service that offers industry-leading scalability, data availability, security, and performance.'
15-
platform:
15+
platform:
1616
- 'Self-hosted'
17-
images:
17+
images:
1818
- /images/integrations/storage-s3/cover.png
1919
- /images/integrations/storage-s3/bucket.png
2020
- /images/integrations/storage-s3/access-key.png
@@ -50,21 +50,21 @@ Visit the `.env` file created for your Appwrite instance and update the followin
5050

5151
```bash
5252
_APP_STORAGE_DEVICE=s3
53-
_APP_STORAGE_S3_BUCKET=[BUCKET_NAME]
54-
_APP_STORAGE_S3_REGION=[AWS_REGION]
55-
_APP_STORAGE_S3_ACCESS_KEY=[ACCESS_KEY_ID]
56-
_APP_STORAGE_S3_SECRET=[SECRET_ACCESS_KEY]
53+
_APP_STORAGE_S3_BUCKET=<BUCKET_NAME>
54+
_APP_STORAGE_S3_REGION=<AWS_REGION>
55+
_APP_STORAGE_S3_ACCESS_KEY=<ACCESS_KEY_ID>
56+
_APP_STORAGE_S3_SECRET=<SECRET_ACCESS_KEY>
5757
```
5858

5959
Starting from version 1.7.0, you can also use S3-compatible providers by configuring the endpoint:
6060

6161
```bash
6262
# For path-style requests (bucket in the path)
63-
_APP_STORAGE_S3_ENDPOINT=[PROVIDER_ENDPOINT] # e.g., s3.amazonaws.com (without https://)
64-
_APP_STORAGE_S3_BUCKET=[BUCKET_NAME] # bucket name required here
63+
_APP_STORAGE_S3_ENDPOINT=<PROVIDER_ENDPOINT> # e.g., s3.amazonaws.com (without https://)
64+
_APP_STORAGE_S3_BUCKET=<BUCKET_NAME> # bucket name required here
6565

6666
# OR for virtual-hosted-style paths (bucket in the endpoint)
67-
_APP_STORAGE_S3_ENDPOINT=[BUCKET_NAME].[PROVIDER_ENDPOINT] # e.g., bucket-name.s3.amazonaws.com
67+
_APP_STORAGE_S3_ENDPOINT=<BUCKET_NAME>.<PROVIDER_ENDPOINT> # e.g., bucket-name.s3.amazonaws.com
6868
_APP_STORAGE_S3_BUCKET= # leave this empty when bucket is in the endpoint
6969
```
7070

0 commit comments

Comments
 (0)