We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abc1b8a commit e6c7d6aCopy full SHA for e6c7d6a
apps/docs/self-hosting/guides/s3.mdx
@@ -34,6 +34,19 @@ To function properly, your S3 bucket must have the following configuration:
34
}
35
```
36
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
50
- Access policy (replace `<bucket-name>` with the name of your S3 bucket):
51
```json
52
{
0 commit comments