Skip to content

Commit e6c7d6a

Browse files
authored
📝 Update cors rules for AWS in s3 guide (baptisteArno#2278)
1 parent abc1b8a commit e6c7d6a

File tree

1 file changed

+13
-0
lines changed
  • apps/docs/self-hosting/guides

1 file changed

+13
-0
lines changed

apps/docs/self-hosting/guides/s3.mdx

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,19 @@ To function properly, your S3 bucket must have the following configuration:
3434
}
3535
```
3636

37+
If you are using the amazon console online you should paste it like this :
38+
39+
```json
40+
[
41+
{
42+
"AllowedHeaders": ["*"],
43+
"AllowedMethods": ["PUT", "POST"],
44+
"AllowedOrigins": ["*"],
45+
"ExposeHeaders": ["ETag"]
46+
}
47+
]
48+
```
49+
3750
- Access policy (replace `<bucket-name>` with the name of your S3 bucket):
3851
```json
3952
{

0 commit comments

Comments
 (0)